nix/home/file/mako/default.nix
2024-12-08 05:29:04 +03:00

35 lines
905 B
Nix

{
__findFile,
config,
pkgs,
...
}: let
alpha = config.module.style.opacity.hex;
color = config.module.style.color;
max = 3;
in {
file = (pkgs.formats.iniWithGlobalSection { }).generate "MakoConfig" {
globalSection = {
anchor = "top-center";
background-color = "#${color.highlight}${alpha}";
border-color = "#${color.border}${alpha}";
default-timeout = 10000;
font = "${config.module.style.font.serif.name} ${toString config.module.style.font.size.popup}";
height = 120;
icons = 0;
margin = 32;
max-history = max;
max-visible = max;
on-notify = "exec swayscript notify";
text-color = "#${config.module.style.color.bg.dark}";
width = 480;
};
sections = {
"mode=dnd" = {
invisible = 1;
on-notify = "exec ${pkgs.coreutils}/bin/true";
};
};
};
}