config/dunst/dunstrc (view raw)
1[global]
2 font = Roboto Mono Medium 14
3 allow_markup = yes
4 plain_text = no
5 format = "%s\n%b"
6 sort = yes
7 indicate_hidden = yes
8 alignment = left
9 bounce_freq = 0
10 show_age_threshold = 60
11 word_wrap = yes
12 ignore_newline = no
13 geometry = "300x5-20+28"
14 shrink = no
15 transparency = 0
16 transparency = 40
17 idle_threshold = 120
18 monitor = 0
19 sticky_history = yes
20 history_length = 20
21 show_indicators = yes
22 line_height = 0
23 notification_height = 0
24 separator_height = 2
25 padding = 20
26 # Horizontal padding.
27 horizontal_padding = 20
28 separator_color = frame
29 startup_notification = false
30
31 # dmenu path.
32 dmenu = /usr/bin/dmenu -p dunst:
33
34 # Browser for opening urls in context menu.
35 browser = /usr/bin/firefox -new-tab
36
37 # Align icons left/right/off
38 icon_position = off
39
40
41 # Paths to default icons.
42 icon_folders = /usr/share/icons/gnome/16x16/status/:/usr/share/icons/gnome/16x16/devices/
43
44[frame]
45 width = 4
46 width = 3
47 color = "#f8f8f8"
48
49[shortcuts]
50 close = ctrl+space
51 # Close all notifications.
52 close_all = alt+shift+space
53 history = ctrl+grave
54 # Context menu.
55 context = ctrl+shift+period
56
57[urgency_low]
58 # IMPORTANT: colors have to be defined in quotation marks.
59 # Otherwise the "#" and following would be interpreted as a comment.
60 background = "#383838"
61 foreground = "#f8f8f8"
62 timeout = 5
63
64[urgency_normal]
65 background = "#383838"
66 foreground = "#f8f8f8"
67 timeout = 5
68
69[urgency_critical]
70 background = "#1111111"
71 foreground = "#dddddd"
72 timeout = 5
73
74# vim: ft=cfg