diff options
Diffstat (limited to '.config/dunst/dunstrc')
-rw-r--r-- | .config/dunst/dunstrc | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/.config/dunst/dunstrc b/.config/dunst/dunstrc new file mode 100644 index 0000000..fda72f3 --- /dev/null +++ b/.config/dunst/dunstrc | |||
@@ -0,0 +1,69 @@ | |||
1 | [global] | ||
2 | ### Display ### | ||
3 | monitor = 0 | ||
4 | follow = none | ||
5 | geometry = "0x5-2+25" | ||
6 | indicate_hidden = yes | ||
7 | shrink = no | ||
8 | transparency = 10 | ||
9 | notification_height = 0 | ||
10 | separator_height = 2 | ||
11 | padding = 8 | ||
12 | horizontal_padding = 8 | ||
13 | frame_width = 3 | ||
14 | frame_color = "#666666" | ||
15 | separator_color = frame | ||
16 | sort = yes | ||
17 | idle_threshold = 120 | ||
18 | font = Monospace 10 | ||
19 | line_height = 0 | ||
20 | markup = full | ||
21 | format = "<b>%s</b>\n%b" | ||
22 | alignment = left | ||
23 | show_age_threshold = 60 | ||
24 | word_wrap = yes | ||
25 | ellipsize = middle | ||
26 | ignore_newline = no | ||
27 | stack_duplicates = false | ||
28 | hide_duplicate_count = false | ||
29 | show_indicators = yes | ||
30 | |||
31 | ### Icons ### | ||
32 | icon_position = off | ||
33 | max_icon_size = 32 | ||
34 | sticky_history = yes | ||
35 | history_length = 20 | ||
36 | |||
37 | ### Misc/Advanced ### | ||
38 | dmenu = /usr/bin/dmenu -p dunst: | ||
39 | browser = /usr/bin/firejail /usr/bin/firefox-esr -new-tab | ||
40 | always_run_script = true | ||
41 | title = Dunst | ||
42 | class = Dunst | ||
43 | startup_notification = false | ||
44 | force_xinerama = false | ||
45 | |||
46 | [experimental] | ||
47 | per_monitor_dpi = false | ||
48 | |||
49 | [shortcuts] | ||
50 | close = ctrl+space | ||
51 | close_all = ctrl+shift+space | ||
52 | history = ctrl+grave | ||
53 | context = ctrl+shift+period | ||
54 | |||
55 | [urgency_low] | ||
56 | background = "#131313" | ||
57 | foreground = "#d6dbe5" | ||
58 | timeout = 10 | ||
59 | |||
60 | [urgency_normal] | ||
61 | background = "#131313" | ||
62 | foreground = "#d6dbe5" | ||
63 | timeout = 10 | ||
64 | |||
65 | [urgency_critical] | ||
66 | background = "#131313" | ||
67 | foreground = "#d6dbe5" | ||
68 | frame_color = "#5294e2" | ||
69 | timeout = 0 | ||