mako: update to new home-manager module (#1211)
Link: https://github.com/danth/stylix/pull/1211 Closes: https://github.com/danth/stylix/issues/1210
This commit is contained in:
parent
e51b3e64f9
commit
b631dffa61
3 changed files with 29 additions and 21 deletions
|
|
@ -20,23 +20,25 @@
|
|||
in
|
||||
with config.lib.stylix.colors.withHashtag;
|
||||
{
|
||||
backgroundColor = base00 + makoOpacity;
|
||||
borderColor = base0D;
|
||||
textColor = base05;
|
||||
progressColor = "over ${base02}";
|
||||
font = "${fonts.sansSerif.name} ${toString fonts.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}
|
||||
'';
|
||||
settings = {
|
||||
background-color = base00 + makoOpacity;
|
||||
border-color = base0D;
|
||||
text-color = base05;
|
||||
progress-color = "over ${base02}";
|
||||
font = "${fonts.sansSerif.name} ${toString fonts.sizes.popups}";
|
||||
};
|
||||
criterias = {
|
||||
"urgency=low" = {
|
||||
background-color = "${base00}${makoOpacity}";
|
||||
border-color = base0D;
|
||||
text-color = base0A;
|
||||
};
|
||||
"urgency=high" = {
|
||||
background-color = "${base00}${makoOpacity}";
|
||||
border-color = base0D;
|
||||
text-color = base08;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue