fix(zellij): disable the startup tips dialogue
I don't need it and its extra friction.
This commit is contained in:
parent
8e7658b885
commit
49920bfe57
1 changed files with 10 additions and 7 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue