diff options
Diffstat (limited to 'linux.nix')
-rw-r--r-- | linux.nix | 27 |
1 files changed, 25 insertions, 2 deletions
@@ -118,8 +118,31 @@ in ''; }; - taffybar = { - enable = false; + dunst = { + enable = true; + settings = { + global = { + geometry = "320x5-10+30"; # span entire top bar + transparency = 0; + frame_color = colors."${theme}".highlight; + frame_width = 3; # same as xmonad border + separator_color = "frame"; + font = "Fira Sans"; + background = colors."${theme}".background; + foreground = colors."${theme}".foreground; + padding = 10; + horizontal_padding = 10; + word_wrap = "yes"; + markup = "full"; + format = "<b>%s</b>\\n%b\\n"; + }; + + urgency_normal = { + background = colors."${theme}".background; + foreground = colors."${theme}".foreground; + timeout = 10; + }; + }; }; redshift = { |