fix(zellij): disable the startup tips dialogue #494

Merged
jalil merged 1 commit from push-tkuzoyxwrxku into main 2025-05-20 22:08:05 +02:00
Showing only changes of commit 49920bfe57 - Show all commits

View file

@ -176,7 +176,9 @@ in
zellij = { zellij = {
enable = cfg.terminal == "alacritty"; # alacritty has no terminal multiplexer built-in enable = cfg.terminal == "alacritty"; # alacritty has no terminal multiplexer built-in
# Set default shell # Set default shell
settings.default_shell = settings = {
show_startup_tips = false; # disable the startup tips dialogue
default_shell =
if config.programs.fish.enable then if config.programs.fish.enable then
"fish" "fish"
else if config.programs.zsh.enable then else if config.programs.zsh.enable then
@ -184,6 +186,7 @@ in
else else
"bash"; "bash";
}; };
};
# PDF reader # PDF reader
zathura.enable = true; zathura.enable = true;
# Auto start sway # Auto start sway