flake/programs/fuzzel.nix

25 lines
540 B
Nix
Raw Normal View History

2023-11-25 16:23:39 +01:00
{
hm.programs.fuzzel = {
enable = true;
settings = {
2023-11-28 18:24:23 +01:00
main = {
font = "Iosevka Nerd Font:size=16";
dpi-aware = false;
horizontal-pad = 20;
};
border.radius = 8;
2023-11-25 16:23:39 +01:00
colors = {
background = "24273aff"; # base
border = "91d7e3cc"; # sky
text = "cad3f5ff"; # text
match = "a6da95ff"; # green
selection = "f4dbd6ff"; # rosewater
selection-text = "181926ff"; # crust
selection-match = "40a02bff"; # latte green
};
};
};
}