dunst: Use different text colors depending on urgency

This commit is contained in:
Donovan Glover 2024-09-04 20:44:19 -04:00
parent 455ad36e56
commit 37787f48ee
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -4,6 +4,8 @@ let
inherit (lib) mkForce; inherit (lib) mkForce;
inherit (config.lib.stylix.colors.withHashtag) inherit (config.lib.stylix.colors.withHashtag)
base08
base0A
base0D base0D
; ;
in in
@ -33,9 +35,17 @@ in
max_icon_size = 128; max_icon_size = 128;
}; };
urgency_low.frame_color = mkForce base0D; urgency_low = {
foreground = mkForce base0A;
frame_color = mkForce base0D;
};
urgency_normal.frame_color = mkForce base0D; urgency_normal.frame_color = mkForce base0D;
urgency_critical.frame_color = mkForce base0D;
urgency_critical = {
foreground = mkForce base08;
frame_color = mkForce base0D;
};
}; };
}; };
} }