diff --git a/home/modules/util/rose-pine-dunst.nix b/home/modules/util/rose-pine-dunst.nix index de49783..8792a82 100644 --- a/home/modules/util/rose-pine-dunst.nix +++ b/home/modules/util/rose-pine-dunst.nix @@ -24,6 +24,8 @@ let }; }; + formatWithColor = color: "%s\n%b"; + getConfig = name: if name == "moon" then configs.moon else if name == "dawn" then configs.dawn @@ -56,20 +58,20 @@ in inherit (selectedConfig.urgency_low) background highlight; frame_color = highlight; default_icon = "dialog-information"; - format = "%s\n%b"; + format = formatWithColor highlight; }; urgency_normal = rec { inherit (selectedConfig.urgency_normal) background highlight; frame_color = highlight; default_icon = "dialog-warning"; - format = "%s\n%b"; + format = formatWithColor highlight; }; urgency_critical = rec { inherit (selectedConfig.urgency_critical) background highlight; frame_color = highlight; default_icon = "dialog-error"; - format = "%s\n%b"; + format = formatWithColor highlight; }; }