43 lines
1.2 KiB
Nix
43 lines
1.2 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
options,
|
|
...
|
|
}:
|
|
let
|
|
makoOpacity = lib.toHexString (
|
|
((builtins.ceil (config.stylix.opacity.popups * 100)) * 255) / 100
|
|
);
|
|
in
|
|
{
|
|
options.stylix.targets.mako.enable =
|
|
config.lib.stylix.mkEnableTarget "Mako" true;
|
|
|
|
# Referenced https://github.com/stacyharper/base16-mako
|
|
config = lib.optionalAttrs (options.services ? mako) (
|
|
lib.mkIf (config.stylix.enable && config.stylix.targets.mako.enable) {
|
|
services.mako =
|
|
with config.lib.stylix.colors.withHashtag;
|
|
with config.stylix.fonts;
|
|
{
|
|
backgroundColor = base00 + makoOpacity;
|
|
borderColor = base0D;
|
|
textColor = base05;
|
|
progressColor = "over ${base02}";
|
|
font = "${sansSerif.name} ${toString sizes.popups}";
|
|
# I wish the mako hm module was like the dunst one
|
|
extraConfig = ''
|
|
[urgency=low]
|
|
background-color=${base00}${makoOpacity}
|
|
border-color=${base0D}
|
|
text-color=${base0A}
|
|
|
|
[urgency=high]
|
|
background-color=${base00}${makoOpacity}
|
|
border-color=${base0D}
|
|
text-color=${base08}
|
|
'';
|
|
};
|
|
}
|
|
);
|
|
}
|