chore(mako): adapt configugation to upstream changes

This commit is contained in:
Yorick Barbanneau 2025-05-19 20:47:38 +02:00
parent 651f00c45d
commit 4728addcb0

View file

@ -13,35 +13,36 @@ with lib;
}; };
services.mako = { services.mako = {
enable = true; enable = true;
font = "Fira Code Nerd Font 10"; settings = {
backgroundColor = "#353535FF"; font = "Fira Code Nerd Font 10";
borderColor = "#1CD180"; backgroundColor = "#353535FF";
progressColor = "over #5566AAFF"; borderColor = "#1CD180";
textColor = "#FDFDFD"; progressColor = "over #5566AAFF";
width = 300; textColor = "#FDFDFD";
height = 100; width = 300;
borderRadius = 0; height = 100;
borderSize = 2; borderRadius = 0;
icons = true; borderSize = 2;
maxIconSize = 64; icons = true;
layer = "overlay"; maxIconSize = 64;
anchor = "top-right"; layer = "overlay";
format = '' anchor = "top-right";
<span font_scale='small-caps'>%a</span>\n<b>%s</b>\n%b format = ''
''; <span font_scale='small-caps'>%a</span>\n<b>%s</b>\n%b
extraConfig = '' '';
[urgency="high"] "urgency=high" = {
border-color=#F268b3 border-color = "#F268b3";
};
[app-name="cmus"] "app-name=cmus" = {
border-size=1 border-size = 1;
default-timeout=7000 default-timeout = 7000;
group-by=app-name group-by = "app-name";
format=%b format= "%b";
};
[app-name="cmus" grouped] "app-name=cmus grouped" = {
format=%b format = "%b";
''; };
};
}; };
}; };
} }