various catppuccin changes
This commit is contained in:
parent
766115ee4b
commit
730f7fbceb
7 changed files with 23 additions and 17 deletions
|
|
@ -41,9 +41,11 @@
|
|||
text = let
|
||||
flavor = config.catppuccin.flavor;
|
||||
palette = pkgs.catppuccin.bare.${flavor};
|
||||
accent = config.catppuccin.accent;
|
||||
in
|
||||
lib.concatStringsSep "\n" (
|
||||
lib.mapAttrsToList (name: value: "set -g color_${name} ${value}") palette
|
||||
(lib.mapAttrsToList (name: value: "set -g color_${name} ${value}") palette)
|
||||
++ ["set -g color_accent ${palette.${accent}}"]
|
||||
);
|
||||
force = true;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -11,11 +11,11 @@ set -g color_cwd $color_green
|
|||
|
||||
# Set host color based on hostname
|
||||
if test (hostname) = peach
|
||||
set -g color_host $color_peach
|
||||
set -g color_host $color_accent
|
||||
else if test (hostname) = alien
|
||||
set -g color_host $color_blue
|
||||
set -g color_host $color_accent
|
||||
else if test (hostname) = vm
|
||||
set -g color_host $color_green
|
||||
set -g color_host $color_accent
|
||||
set -g color_cwd normal
|
||||
else if test (uname) = Darwin
|
||||
set -g color_host $color_yellow
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue