2024-04-07 22:16:33 -04:00
|
|
|
{
|
|
|
|
config,
|
2024-07-18 21:05:35 -04:00
|
|
|
lib,
|
2024-04-07 22:16:33 -04:00
|
|
|
...
|
|
|
|
}: {
|
2024-06-26 22:13:02 -04:00
|
|
|
config = lib.mkIf config.ar.home.apps.fuzzel.enable {
|
2024-03-28 19:52:15 -04:00
|
|
|
programs.fuzzel = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
2024-07-01 22:59:41 -04:00
|
|
|
border = {
|
|
|
|
radius = 10;
|
|
|
|
width = 2;
|
|
|
|
};
|
|
|
|
|
2024-03-28 19:52:15 -04:00
|
|
|
main = {
|
2024-08-03 21:07:55 -04:00
|
|
|
font = "UbuntuSansMono Nerd Font:size=${toString config.gtk.font.size}";
|
2024-07-03 10:35:39 -04:00
|
|
|
icon-theme = "${config.gtk.iconTheme.name}";
|
2024-03-28 19:52:15 -04:00
|
|
|
layer = "overlay";
|
2024-04-28 19:43:18 -04:00
|
|
|
lines = 3;
|
2024-06-29 21:35:07 -04:00
|
|
|
terminal = lib.getExe config.ar.home.defaultApps.terminal;
|
2024-06-03 22:10:25 -04:00
|
|
|
width = 36;
|
|
|
|
};
|
2024-07-01 22:59:41 -04:00
|
|
|
|
2024-03-28 19:52:15 -04:00
|
|
|
colors = {
|
2024-06-26 22:13:02 -04:00
|
|
|
background = "${config.ar.home.theme.colors.background}CC";
|
|
|
|
border = "${config.ar.home.theme.colors.primary}EE";
|
|
|
|
selection = "${config.ar.home.theme.colors.background}FF";
|
2024-07-01 22:59:41 -04:00
|
|
|
selection-match = "${config.ar.home.theme.colors.primary}FF";
|
|
|
|
selection-text = "${config.ar.home.theme.colors.secondary}FF";
|
2024-06-26 22:13:02 -04:00
|
|
|
text = "${config.ar.home.theme.colors.text}FF";
|
2024-03-28 19:52:15 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|