22 lines
436 B
Nix
22 lines
436 B
Nix
|
{...}: {
|
||
|
programs.fuzzel = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
main = {
|
||
|
line-height = 15;
|
||
|
lines = 10;
|
||
|
layer = "overlay";
|
||
|
icon-theme = "Papirus-Dark";
|
||
|
};
|
||
|
colors = {
|
||
|
background = "1E1E2EEE";
|
||
|
text = "7F849CFF";
|
||
|
match = "89B4FAFF";
|
||
|
selection = "45475AFF";
|
||
|
selection-text = "CDD6F4FF";
|
||
|
selection-match = "89B4FAFF";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|