aboutsummaryrefslogtreecommitdiff
path: root/.config/dunst
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2018-08-12 23:48:38 -0400
committertdro <tdro@users.noreply.github.com>2018-08-12 23:48:38 -0400
commitc6ea9aad3a5eb9509784854dcd3d95f62981ac1d (patch)
tree349ba22100a39187aa97885bdf74aa265a858c9c /.config/dunst
parent59c95472f7c27d0f7467ec3f06349ddaefca234f (diff)
downloaddotfiles-c6ea9aad3a5eb9509784854dcd3d95f62981ac1d.tar.gz
dotfiles-c6ea9aad3a5eb9509784854dcd3d95f62981ac1d.tar.bz2
dotfiles-c6ea9aad3a5eb9509784854dcd3d95f62981ac1d.zip
dotfiles: new config path for dunstrc
Diffstat (limited to '.config/dunst')
-rw-r--r--.config/dunst/dunstrc66
1 files changed, 66 insertions, 0 deletions
diff --git a/.config/dunst/dunstrc b/.config/dunst/dunstrc
new file mode 100644
index 0000000..040b78d
--- /dev/null
+++ b/.config/dunst/dunstrc
@@ -0,0 +1,66 @@
+[global]
+ font = Ubuntu 8
+ markup = full
+ format = "<b>%s</b>\n%b"
+
+ max_icon_size = 32
+ icon_path = /usr/share/icons/gnome/16x16/status/:/usr/share/icons/gnome/16x16/devices/
+
+ frame_width = 3
+ frame_color = "#000000"
+
+ sort = yes
+ indicate_hidden = yes
+ alignment = left
+
+ bounce_freq = 0
+ show_age_threshold = 60
+ word_wrap = yes
+ ignore_newline = no
+
+ geometry = "250x5-5+25"
+ shrink = yes
+ transparency = 0
+
+ idle_threshold = 120
+ monitor = 0
+ follow = mouse
+ sticky_history = yes
+
+ history_length = 20
+ show_indicators = yes
+
+ line_height = 0
+ separator_height = 2
+ padding = 8
+ horizontal_padding = 8
+
+ separator_color = frame
+ startup_notification = false
+
+ dmenu = /usr/bin/dmenu -p dunst:
+ browser = /usr/bin/firefox -new-tab
+ icon_position = off
+
+[shortcuts]
+ close = ctrl+space
+ close_all = ctrl+shift+space
+ history = ctrl+grave
+ context = ctrl+shift+period
+
+[urgency_low]
+ background = "#000000"
+ foreground = "#ffffff"
+ timeout = 3
+
+[urgency_normal]
+ background = "#000000"
+ foreground = "#ffffff"
+ timeout = 5
+
+[urgency_critical]
+ background = "#FF0000"
+ foreground = "#000000"
+ timeout = 0
+
+# vim: ft=cfg