From 80e190f43aa3f83f58bfbeb733ce5954f34c1100 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Fri, 13 Feb 2026 14:12:51 -0500 Subject: [PATCH] fix(dunst) swap normal and low urgency themes --- home/modules/ui.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/home/modules/ui.nix b/home/modules/ui.nix index 87f5e0b..3038bef 100644 --- a/home/modules/ui.nix +++ b/home/modules/ui.nix @@ -188,12 +188,12 @@ in }; urgency_low = { background = c.bg; - foreground = c.blue; - frame_color = c.blue; + foreground = c.fg; }; urgency_normal = { background = c.bg; - foreground = c.fg; + foreground = c.blue; + frame_color = c.blue; }; urgency_critical = { background = c.bg;