nixos-config/home/modules/foot.nix

97 lines
2.2 KiB
Nix
Raw Normal View History

2024-07-19 16:11:33 +02:00
{
config,
lib,
...
}: {
programs.foot = {
enable = config.os == "linux";
2024-07-19 16:11:33 +02:00
settings = {
main = {
2024-10-20 18:54:39 +02:00
font = "ComicShannsMono Nerd Font Mono:size=8";
2024-07-19 16:11:33 +02:00
dpi-aware = "yes";
};
2024-09-04 11:19:09 +02:00
cursor = {
2024-09-09 20:41:48 +02:00
blink = "yes";
2024-09-04 11:19:09 +02:00
};
mouse = {
2024-09-09 20:41:48 +02:00
hide-when-typing = "yes";
2024-09-04 11:19:09 +02:00
};
2024-07-19 16:11:33 +02:00
colors = {
2024-09-09 20:41:48 +02:00
alpha = 0.8;
# catppuccin
# foreground = "cdd6f4";
# background = "1e1e2e";
#
# regular0 = "45475a";
# regular1 = "f38ba8";
# regular2 = "a6e3a1";
# regular3 = "f9e2af";
# regular4 = "89b4fa";
# regular5 = "f5c2e7";
# regular6 = "94e2d5";
# regular7 = "bac2de";
#
# bright0 = "585b70";
# bright1 = "f38ba8";
# bright2 = "a6e3a1";
# bright3 = "f9e2af";
# bright4 = "89b4fa";
# bright5 = "f5c2e7";
# bright6 = "94e2d5";
# bright7 = "a6adc8";
#
# selection-foreground = "cdd6f4";
# selection-background = "414356";
#
# search-box-no-match = "11111b f38ba8";
# search-box-match = "cdd6f4 313244";
#
# jump-labels = "11111b fab387";
# urls = "89b4fa";
# Base16 Apathy - foot color config
background = "031a16";
foreground = "81b5ac";
# normal
regular0 = "031a16";
regular1 = "3e9688";
regular2 = "883e96";
regular3 = "3e4c96";
regular4 = "96883e";
regular5 = "4c963e";
regular6 = "963e4c";
regular7 = "81b5ac";
# bright
bright0 = "2b685e";
bright1 = "3e7996";
bright2 = "0b342d";
bright3 = "184e45";
bright4 = "5f9c92";
bright5 = "a7cec8";
bright6 = "3e965b";
bright7 = "d2e7e4";
# extended
"16" = "3e7996";
"17" = "3e965b";
"18" = "0b342d";
"19" = "184e45";
"20" = "5f9c92";
"21" = "a7cec8";
# misc
selection-background = "81b5ac";
selection-foreground = "031a16";
urls = "5f9c92";
jump-labels = "031a16 3e4c96";
scrollback-indicator = "031a16 5f9c92";
2024-07-19 16:11:33 +02:00
};
};
};
}