From f17bfe4aa3b00f1712f4280a7ce69d4bdd851842 Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Mon, 2 Jan 2023 14:01:47 +0100 Subject: [PATCH] Better theme for Dunst --- hm_modules/dunst.nix | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) 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; };