dotfiles-nix/nix/users/nicolaivds/wayland/foot.nix
2023-10-13 15:56:14 +02:00

52 lines
1.4 KiB
Nix

{
custom ? {
font = "RobotoMono Nerd Font";
fontsize = "12";
primary_accent = "cba6f7";
background = "11111B";
opacity = ".85";
},
...
}:
{
programs.foot = {
enable = true;
server.enable = true;
settings = {
main = {
term = "xterm-256color";
font = "${custom.font}:size=${custom.fontsize}";
pad = "10x5 center";
dpi-aware = "no";
};
cursor = {
color = "${custom.primary_accent} ${custom.primary_accent}";
style = "beam";
};
colors = {
alpha="${custom.opacity}";
background="${custom.palette.tertiary_background_hex}";
# background="${custom.background}";
regular0="11111B"; # black
regular1="ff5555"; # red
regular2="afffd7"; # green
regular3="f1fa8c"; # yellow
regular4="87afff"; # blue
regular5="bd93f9"; # magenta
regular6="8be9fd"; # cyan
regular7="f8f8f2"; # white
bright0="2d5b69"; # bright black
bright1="ff665c"; # bright red
bright2="84c747"; # bright green
bright3="ebc13d"; # bright yellow
bright4="58a3ff"; # bright blue
bright5="ff84cd"; # bright magenta
bright6="53d6c7"; # bright cyan
bright7="cad8d9"; # bright white
};
tweak = {
sixel = "yes";
};
};
};
}