diff options
| author | 2026-04-17 10:53:47 +0100 | |
|---|---|---|
| committer | 2026-04-17 10:53:47 +0100 | |
| commit | d5c75110e88a0f57bf2e39bff46749ebf9786f4c (patch) | |
| tree | 2671fb3382d3d4902fb0c1008d11d4bb252cec41 /home | |
| parent | 5a82b300c1ec5f6bac57c66e06eaa7807d5f964d (diff) | |
| download | dotfiles-d5c75110e88a0f57bf2e39bff46749ebf9786f4c.tar.gz dotfiles-d5c75110e88a0f57bf2e39bff46749ebf9786f4c.tar.bz2 dotfiles-d5c75110e88a0f57bf2e39bff46749ebf9786f4c.zip | |
fix: disable zellij startup tips and release notes popups
These floating popups (tips, release notes) appear on startup when
not explicitly disabled. Dismissing them with Ctrl+C triggers
zellij's Reconfigure with write_config_to_disk=true, which backs
up the config to .bak and writes a 600-line autogenerated version,
destroying stow symlinks.
Setting both to false in the config prevents the popups from
appearing and the destructive write from ever being triggered.
Diffstat (limited to 'home')
| -rw-r--r-- | home/.config/zellij/config.kdl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/home/.config/zellij/config.kdl b/home/.config/zellij/config.kdl index 005dc5e..0a1f6a6 100644 --- a/home/.config/zellij/config.kdl +++ b/home/.config/zellij/config.kdl @@ -13,6 +13,10 @@ copy_on_select true // Auto-attach to existing session with the same name instead of erroring attach_to_session true +// Disable startup popups that overwrite stow-managed config when dismissed +show_startup_tips false +show_release_notes false + // Custom keybindings (merged with defaults) keybinds { shared_except "locked" { |
