32 lines
703 B
Nix
32 lines
703 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}";
|
|
width = 600;
|
|
height = 600;
|
|
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 = 5;
|
|
borderSize = 1;
|
|
defaultTimeout = 0;
|
|
};
|
|
}
|