From e89d25366b08a93e3e87102e0d3b1d2ddc198747 Mon Sep 17 00:00:00 2001 From: s-prechtl Date: Sat, 28 Sep 2024 15:02:31 +0200 Subject: [PATCH] feat: dunst basic gruvbox styling --- hosts/default/home.nix | 1 + modules/home-manager/dunst.nix | 13 ++++++++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/hosts/default/home.nix b/hosts/default/home.nix index 589a263..415fc95 100644 --- a/hosts/default/home.nix +++ b/hosts/default/home.nix @@ -7,6 +7,7 @@ ../../modules/home-manager/hyprland.nix ../../modules/home-manager/pass.nix ../../modules/home-manager/btop.nix + ../../modules/home-manager/dunst.nix ../../modules/home-manager/blueman.nix ../../modules/home-manager/git.nix ../../modules/home-manager/wofi.nix diff --git a/modules/home-manager/dunst.nix b/modules/home-manager/dunst.nix index 29ee053..5020db6 100644 --- a/modules/home-manager/dunst.nix +++ b/modules/home-manager/dunst.nix @@ -3,7 +3,18 @@ enable = true; settings = { global = { - frame_color = "#ffebdbb2"; + frame_color = "#ebdbb2"; + background = "#282828"; + foreground = "#ebdbb2"; + offset = "30x30"; + corner_radius = 10; + icon_corner_radius = 5; + gap_size = 5; + font = "JetBrainsMono Nerd Font Mono 10"; + }; + + urgency_critical = { + frame_color = "#BF616A"; }; }; };