diff --git a/modules/home/environment/zshell.nix b/modules/home/environment/zshell.nix index 865c7ef..d2e7666 100755 --- a/modules/home/environment/zshell.nix +++ b/modules/home/environment/zshell.nix @@ -77,7 +77,7 @@ fi } kitty_ssh_theme() { - if [ -n "$SSH_CONNECTION" ]; then + if [ -z "$SSH_CONNECTION" ]; then kitty @ set-colors -a ~/.config/kitty/ssh-theme.conf else kitty @ set-colors -a ~/.config/kitty/ssh-theme.conf diff --git a/modules/home/files.nix b/modules/home/files.nix index 734847c..8511439 100755 --- a/modules/home/files.nix +++ b/modules/home/files.nix @@ -4,7 +4,7 @@ # Basically a to-do list for stuff I need to write my own modules for. let # Custom theme that activates in ssh - ssh_base16 = "atelier-cave"; + ssh_base16 = "black-metal-venom"; scheme_path = "${pkgs.base16-schemes}/share/themes/${ssh_base16}.yaml"; scheme_string = builtins.readFile scheme_path; diff --git a/modules/home/programs/kitty.nix b/modules/home/programs/kitty.nix index efab290..18e406b 100755 --- a/modules/home/programs/kitty.nix +++ b/modules/home/programs/kitty.nix @@ -33,42 +33,6 @@ "ctrl+shift+left" = "no_op"; "ctrl+shift+right" = "no_op"; }; - - extraConfig = '' - background #${scheme.base00} - foreground #${scheme.base05} - selection_background #${scheme.base05} - selection_foreground #${scheme.base00} - url_color #${scheme.base04} - cursor #${scheme.base05} - active_border_color #${scheme.base03} - inactive_border_color #${scheme.base01} - active_tab_background #${scheme.base00} - active_tab_foreground #${scheme.base05} - inactive_tab_background #${scheme.base01} - inactive_tab_foreground #${scheme.base04} - tab_bar_background #${scheme.base01} - - # normal - color0 #${scheme.base01} - color1 #${scheme.base08} - color2 #${scheme.base0B} - color3 #${scheme.base0A} - color4 #${scheme.base0D} - color5 #${scheme.base0E} - color6 #${scheme.base0C} - color7 #${scheme.base05} - - # bright - color8 #${scheme.base03} - color9 #${scheme.base09} - color10 #${scheme.base01} - color11 #${scheme.base02} - color12 #${scheme.base04} - color13 #${scheme.base06} - color14 #${scheme.base0F} - color15 #${scheme.base07} - ''; }; }; }