From 8d3d894a767310280298ef8a045d56788e820f4c Mon Sep 17 00:00:00 2001 From: NAHO <90870942+trueNAHO@users.noreply.github.com> Date: Thu, 27 Nov 2025 17:11:45 +0100 Subject: [PATCH] dunst: set highlight color to match frame color --- modules/dunst/hm.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/dunst/hm.nix b/modules/dunst/hm.nix index 9614aca28..85276bc3d 100644 --- a/modules/dunst/hm.nix +++ b/modules/dunst/hm.nix @@ -30,18 +30,21 @@ mkTarget { background = base01 + dunstOpacity; foreground = base05; frame_color = base03; + highlight = base03; }; urgency_normal = { background = base01 + dunstOpacity; foreground = base05; frame_color = base0D; + highlight = base0D; }; urgency_critical = { background = base01 + dunstOpacity; foreground = base05; frame_color = base08; + highlight = base08; }; }; }