This repository has been archived on 2024-07-03. You can view files and clone it, but cannot push or open issues or pull requests.
home-manager/programs/desktop/fuzzel/default.nix

45 lines
1.1 KiB
Nix
Raw Normal View History

{
config,
pkgs,
fonts,
accentColour ? "base07",
...
}: {
programs.fuzzel = {
enable = true;
settings = {
main = {
dpi-aware = false;
font = "${fonts.monospace.name}:size=${toString fonts.sizes.popups}";
icon-theme = config.gtk.iconTheme.name;
icons-enabled = true;
fields = "filename,name,generic,categories";
fuzzy = true;
2024-05-29 09:18:54 +01:00
filter-desktop = true;
terminal = with config.programs; "${
if alacritty.enable
then alacritty.package
else pkgs.alacritty
}/bin/alacritty -e";
2024-05-29 10:16:15 +01:00
lines = 24;
width = 80;
tabs = 4;
layer = "overlay";
};
colors = with config.scheme; {
background = "${base00}cc"; # 80% Opacity
text = "${base05}ff";
match = "${red}ff";
selection = "${base01}ff";
selection-text = "${base05}ff";
selection-match = "${red}ff";
border = "${config.scheme.${accentColour}}ff";
};
border = {
width = 1;
radius = 10;
};
};
};
}