From 27f73340deda5c95ccccc71724b55d50ec14e002 Mon Sep 17 00:00:00 2001 From: LavaDesu Date: Mon, 17 Mar 2025 00:06:11 +1100 Subject: [PATCH] user/dunst: theme with catppuccin --- modules/user/dunst.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/modules/user/dunst.nix b/modules/user/dunst.nix index 08f4d62..35c65d4 100644 --- a/modules/user/dunst.nix +++ b/modules/user/dunst.nix @@ -49,21 +49,21 @@ in { }; urgency_low = { - background = "#12131b"; - foreground = "#d8dee8"; + background = config.catppuccin.hexcolors.surface1; + foreground = config.catppuccin.hexcolors.text; timeout = 3; }; urgency_normal = { - background = "#12131b"; - foreground = "#d8dee8"; + background = config.catppuccin.hexcolors.surface1; + foreground = config.catppuccin.hexcolors.text; timeout = 5; }; urgency_critical = { - background = "#12131b"; - foreground = "#d8dee8"; - # frame_color = "#bf616a"; + background = config.catppuccin.hexcolors.surface1; + foreground = config.catppuccin.hexcolors.text; + frame_color = config.catppuccin.hexcolors.red; timeout = 0; }; };