mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-08 01:14:01 +01:00
dunst: Use different text colors depending on urgency
This commit is contained in:
parent
455ad36e56
commit
37787f48ee
@ -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;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user