diff options
Diffstat (limited to 'common/home/services/dunst')
| -rw-r--r-- | common/home/services/dunst/default.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/common/home/services/dunst/default.nix b/common/home/services/dunst/default.nix index a8321f2..28438e0 100644 --- a/common/home/services/dunst/default.nix +++ b/common/home/services/dunst/default.nix @@ -1,4 +1,22 @@ { ... }: { enable = true; + settings = { + global = { + width = 300; + height = 300; + offset = "30x30"; + origin = "top-right"; + transparency = 0; + frame_color = "#b16286"; + corner_radius = 5; + font = "SauceCodePro NF 9"; + }; + + urgency_normal = { + background = "#282828"; + foreground = "#ebdbb2"; + timeout = 10; + }; + }; } |