From b09847414b50c65788936199918272377f70fb91 Mon Sep 17 00:00:00 2001 From: NAHO <90870942+trueNAHO@users.noreply.github.com> Date: Fri, 20 Feb 2026 23:35:23 +0100 Subject: [PATCH] dunst: set highlight color to match frame color (#2032) Link: https://github.com/nix-community/stylix/pull/2032 Reviewed-by: dastarruer --- modules/dunst/hm.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/dunst/hm.nix b/modules/dunst/hm.nix index 5393ba01..4b723902 100644 --- a/modules/dunst/hm.nix +++ b/modules/dunst/hm.nix @@ -27,18 +27,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; }; }; }