diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-10-31 11:32:41 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-10-31 11:32:41 +0100 |
| commit | a9ccb0d475c373e1218919428c9e4a0f05a20050 (patch) | |
| tree | 19b659bd7ab78cb5ca0d3b12d416651c78060d8b /common/home/services | |
| parent | 940ab61ac49f13accac001c968401b08211df02c (diff) | |
set dunst colortheme
Diffstat (limited to 'common/home/services')
| -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; + }; + }; } |