diff options
author | Alan Pearce | 2019-10-04 11:51:00 +0200 |
---|---|---|
committer | Alan Pearce | 2019-10-04 11:51:00 +0200 |
commit | db1113b79e02e9accc4d83dc64a46b348349b492 (patch) | |
tree | cf93c83a88ca49cc14d29d659ad6589238b85aee | |
parent | b3661c657e9c5f1d3ba769988c9a0be94a689a39 (diff) | |
download | nixfiles-db1113b79e02e9accc4d83dc64a46b348349b492.tar.lz nixfiles-db1113b79e02e9accc4d83dc64a46b348349b492.tar.zst nixfiles-db1113b79e02e9accc4d83dc64a46b348349b492.zip |
dunst: add missing configuration
-rw-r--r-- | user/modules/dunst.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/user/modules/dunst.nix b/user/modules/dunst.nix index 1ee8f90d..6d74b51b 100644 --- a/user/modules/dunst.nix +++ b/user/modules/dunst.nix @@ -14,7 +14,12 @@ separator_height = 2; padding = 8; horizontal_padding = 8; + idle_threshold = 30; + indicate_hidden = "no"; + + allow_markup = "yes"; + format = "<b>%s</b>\n%b"; word_wrap = "yes"; ignore_newline = "no"; @@ -24,6 +29,12 @@ width = 1; color = "#383838"; }; + shortcuts = { + close = "mod4+apostrophe"; + close_all = "mod4+shift+apostrophe"; + history = "mod4+grave"; + context = "mod4+shift+period"; + }; urgency_low = { background = "#b8b8b8"; foreground = "#f8f8f8"; |