27 lines
621 B
Nix
27 lines
621 B
Nix
|
{
|
||
|
config,
|
||
|
fonts,
|
||
|
accentColourName,
|
||
|
...
|
||
|
}: {
|
||
|
services.mako = let
|
||
|
sc = config.scheme.withHashtag;
|
||
|
in {
|
||
|
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 = "${sc.base05}ff";
|
||
|
progressColor = "over ${sc.red}ff";
|
||
|
backgroundColor = "${sc.base00}cc";
|
||
|
borderColor = "${sc.${accentColourName}}ff";
|
||
|
borderRadius = 10;
|
||
|
borderSize = 1;
|
||
|
defaultTimeout = 0;
|
||
|
};
|
||
|
}
|