diff --git a/hm_modules/dunst.nix b/hm_modules/dunst.nix index 3df61de..1bd32ff 100644 --- a/hm_modules/dunst.nix +++ b/hm_modules/dunst.nix @@ -44,7 +44,7 @@ in max_icon_size = 32; sticky_history = "yes"; history_length = 20; - # dmenu = "rofi -dmenu -p dunst:"; + dmenu = "rofi -dmenu -p dunst:"; # browser = "google-chrome-stable"; browser = "firefox"; always_run_script = "true"; @@ -59,18 +59,15 @@ in mouse_right_click = "close_all"; }; urgency_low = { - background = strPalette.normal.black; - foreground = strPalette.normal.white; + inherit (strPalette) background foreground; timeout = 10; }; urgency_normal = { - background = strPalette.normal.black; - foreground = strPalette.normal.white; + inherit (strPalette) background foreground; timeout = 10; }; urgency_critical = { - background = strPalette.normal.black; - foreground = strPalette.normal.white; + inherit (strPalette) background foreground; frame_color = strPalette.bright.red; timeout = 0; };