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/mako/default.nix
Evie Litherland-Smith 2af99c51d7 Fix opacity of mako and fuzzel, actually 80% now
Change bright0 colour for foot from base03 -> base04 for better
contrast
2024-05-29 14:07:33 +01:00

25 lines
625 B
Nix

{
config,
fonts,
accentColour ? "base07",
...
}: {
services.mako = with config.scheme.withHashtag; {
enable = true;
anchor = "top-right";
font = "${fonts.monospace.name} ${toString fonts.sizes.popups}";
layer = "top";
markup = true;
maxVisible = 10;
icons = true;
iconPath = with config.gtk.iconTheme; "${package}/share/icons/${name}";
textColor = "${base05}ff";
progressColor = "over ${red}ff";
backgroundColor = "${base00}cc";
borderColor = "${config.scheme.withHashtag.${accentColour}}ff";
borderRadius = 10;
borderSize = 1;
defaultTimeout = 0;
};
}