252 current 2024-03-20 16:29:57 24.05.20240319.b06025f 6.8.0-zen1 *

This commit is contained in:
zackartz 2024-03-20 16:30:06 -04:00
parent 804efb0c99
commit 8bf5c75f6f
2 changed files with 29 additions and 27 deletions

View file

@ -15,6 +15,7 @@
./swayidle.nix ./swayidle.nix
./vim/default.nix ./vim/default.nix
../rice/foot.nix
../rice/hyprland ../rice/hyprland
# ../rice/sway # ../rice/sway
../rice/gtk.nix ../rice/gtk.nix

View file

@ -1,33 +1,34 @@
{ {
programs.foot = { programs.foot = {
enable = true; enable = true;
settings = '' settings = {
cursor = {
color = "191724 e0def4";
};
colors = {
background = "191724";
foreground = "e0def4";
regular0 = "26233a"; # black (Overlay)
regular1 = "eb6f92"; # red (Love)
regular2 = "31748f"; # green (Pine)
regular3 = "f6c177"; # yellow (Gold)
regular4 = "9ccfd8"; # blue (Foam)
regular5 = "c4a7e7"; # magenta (Iris)
regular6 = "ebbcba"; # cyan (Rose)
regular7 = "e0def4"; # white (Text)
[cursor] bright0 = "6e6a86"; # bright black (Overlay)
color=191724 e0def4 bright1 = "eb6f92"; # bright red (Love)
bright2 = "31748f"; # bright green (Pine)
[colors] bright3 = "f6c177"; # bright yellow (Gold)
background=191724 bright4 = "9ccfd8"; # bright blue (Foam)
foreground=e0def4 bright5 = "c4a7e7"; # bright magenta (Iris)
regular0=26233a # black (Overlay) bright6 = "ebbcba"; # bright cyan (Rose)
regular1=eb6f92 # red (Love) bright7 = "e0def4"; # bright white (Text)
regular2=31748f # green (Pine) };
regular3=f6c177 # yellow (Gold) csd = {
regular4=9ccfd8 # blue (Foam) font = "Iosevka Nerd Font Mono";
regular5=c4a7e7 # magenta (Iris) };
regular6=ebbcba # cyan (Rose) };
regular7=e0def4 # white (Text)
bright0=6e6a86 # bright black (Overlay)
bright1=eb6f92 # bright red (Love)
bright2=31748f # bright green (Pine)
bright3=f6c177 # bright yellow (Gold)
bright4=9ccfd8 # bright blue (Foam)
bright5=c4a7e7 # bright magenta (Iris)
bright6=ebbcba # bright cyan (Rose)
bright7=e0def4 # bright white (Text)
font=Iosevka Nerd Font Mono
'';
}; };
} }