fix(zellij): disable the startup tips dialogue
All checks were successful
/ check (push) Successful in 8s
/ build-packages (push) Successful in 14s
/ build-vm (push) Successful in 3s
/ report-size (push) Successful in 4s

I don't need it and its extra friction.
This commit is contained in:
Jalil David Salamé Messina 2025-05-20 22:05:06 +02:00
parent 8e7658b885
commit 49920bfe57
Signed by: jalil
GPG key ID: F016B9E770737A0B

View file

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