Commit | Line | Data |
---|---|---|
d101fbe9 SK |
1 | [global] |
2 | frame_width = 1 | |
3 | frame_color = "#709080" | |
4 | ||
5 | # Allow a small subset of html markup: | |
6 | # <b>bold</b> | |
7 | # <i>italic</i> | |
8 | # <s>strikethrough</s> | |
9 | # <u>underline</u> | |
10 | # | |
11 | # For a complete reference see | |
12 | # <http://developer.gnome.org/pango/stable/PangoMarkupFormat.html>. | |
13 | # If markup is not allowed, those tags will be stripped out of the | |
14 | # message. | |
15 | markup = no | |
16 | ||
17 | # The format of the message. Possible variables are: | |
18 | # %a appname | |
19 | # %s summary | |
20 | # %b body | |
21 | # %i iconname (including its path) | |
22 | # %I iconname (without its path) | |
23 | # %p progress value if set ([ 0%] to [100%]) or nothing | |
24 | # Markup is allowed | |
25 | format = "<b>%s</b>\n%b" | |
26 | ||
27 | # Sort messages by urgency. | |
28 | sort = yes | |
29 | ||
30 | # Show how many messages are currently hidden (because of geometry). | |
31 | indicate_hidden = yes | |
32 | ||
33 | # Alignment of message text. | |
34 | # Possible values are "left", "center" and "right". | |
35 | alignment = left | |
36 | ||
37 | # The frequency with wich text that is longer than the notification | |
38 | # window allows bounces back and forth. | |
39 | # This option conflicts with "word_wrap". | |
40 | # Set to 0 to disable. | |
41 | bounce_freq = 0 | |
42 | ||
43 | # Show age of message if message is older than show_age_threshold | |
44 | # seconds. | |
45 | # Set to -1 to disable. | |
46 | show_age_threshold = 60 | |
47 | ||
48 | # Split notifications into multiple lines if they don't fit into | |
49 | # geometry. | |
50 | word_wrap = yes | |
51 | ||
52 | # Ignore newlines '\n' in notifications. | |
53 | ignore_newline = no | |
54 | ||
55 | ||
56 | # The geometry of the window: | |
57 | # [{width}]x{height}[+/-{x}+/-{y}] | |
915de5bf SK |
58 | # Default: |
59 | # "0x0+0-0" | |
d101fbe9 SK |
60 | # The geometry of the message window. |
61 | # The height is measured in number of notifications everything else | |
62 | # in pixels. If the width is omitted but the height is given | |
63 | # ("-geometry x2"), the message window expands over the whole screen | |
64 | # (dmenu-like). If width is 0, the window expands to the longest | |
65 | # message displayed. A positive x is measured from the left, a | |
66 | # negative from the right side of the screen. Y is measured from | |
67 | # the top and down respectevly. | |
68 | # The width can be negative. In this case the actual width is the | |
69 | # screen width minus the width defined in within the geometry option. | |
70 | ||
71 | # 3840x2160 | |
72 | #geometry = "600x80-0+60" | |
73 | #font = Terminus 24 | |
74 | ||
75 | # 3440x1440 | |
915de5bf SK |
76 | #geometry = "400x80-0+30" |
77 | geometry = "0x10-10+30" | |
78 | font = Iosevka Fixed SS09 Extended 14 | |
d101fbe9 SK |
79 | |
80 | # Shrink window if it's smaller than the width. Will be ignored if | |
81 | # width is 0. | |
82 | shrink = no | |
83 | ||
84 | # The transparency of the window. Range: [0; 100]. | |
85 | # This option will only work if a compositing windowmanager is | |
86 | # present (e.g. xcompmgr, compiz, etc.). | |
87 | #transparency = 25 | |
88 | ||
89 | # Don't remove messages, if the user is idle (no mouse or keyboard input) | |
90 | # for longer than idle_threshold seconds. | |
91 | # Set to 0 to disable. | |
92 | idle_threshold = 300 | |
93 | ||
94 | # Which monitor should the notifications be displayed on. | |
95 | monitor = 0 | |
96 | ||
97 | # Display notification on focused monitor. Possible modes are: | |
98 | # mouse: follow mouse pointer | |
99 | # keyboard: follow window with keyboard focus | |
100 | # none: don't follow anything | |
101 | # | |
102 | # "keyboard" needs a windowmanager that exports the | |
103 | # _NET_ACTIVE_WINDOW property. | |
104 | # This should be the case for almost all modern windowmanagers. | |
105 | # | |
106 | # If this option is set to mouse or keyboard, the monitor option | |
107 | # will be ignored. | |
108 | follow = mouse | |
109 | ||
110 | # Should a notification popped up from history be sticky or timeout | |
111 | # as if it would normally do. | |
112 | sticky_history = yes | |
113 | ||
114 | # Maximum amount of notifications kept in history | |
115 | history_length = 1000 | |
116 | ||
117 | # Display indicators for URLs (U) and actions (A). | |
118 | show_indicators = yes | |
119 | ||
120 | # The height of a single line. If the height is smaller than the | |
121 | # font height, it will get raised to the font height. | |
122 | # This adds empty space above and under the text. | |
123 | line_height = 0 | |
124 | ||
125 | # Draw a line of "separatpr_height" pixel height between two | |
126 | # notifications. | |
127 | # Set to 0 to disable. | |
128 | separator_height = 1 | |
129 | ||
130 | # Padding between text and separator. | |
131 | padding = 8 | |
132 | ||
133 | # Horizontal padding. | |
134 | horizontal_padding = 8 | |
135 | ||
136 | # Define a color for the separator. | |
137 | # possible values are: | |
138 | # * auto: dunst tries to find a color fitting to the background; | |
139 | # * foreground: use the same color as the foreground; | |
140 | # * frame: use the same color as the frame; | |
141 | # * anything else will be interpreted as a X color. | |
142 | separator_color = frame | |
143 | ||
144 | # Print a notification on startup. | |
145 | # This is mainly for error detection, since dbus (re-)starts dunst | |
146 | # automatically after a crash. | |
147 | startup_notification = true | |
148 | ||
149 | # dmenu path. | |
150 | dmenu = /usr/bin/dmenu -p dunst: | |
151 | ||
152 | # Browser for opening urls in context menu. | |
1add2013 | 153 | browser = brave-browser |
d101fbe9 SK |
154 | |
155 | # Align icons left/right/off | |
156 | icon_position = off | |
157 | ||
158 | # Paths to default icons. | |
159 | #icon_path = /usr/share/icons/gnome/16x16/status/:/usr/share/icons/gnome/16x16/devices/ | |
160 | #icon_path = /usr/share/icons/Humanity/status/16 | |
161 | #icon_path = /usr/share/icons/breeze-dark/status/64 | |
162 | #icon_path = /usr/share/icons/oxygen/16x16/status/ | |
163 | ||
164 | [shortcuts] | |
165 | ||
166 | # Shortcuts are specified as [modifier+][modifier+]...key | |
167 | # Available modifiers are "ctrl", "mod1" (the alt-key), "mod2", | |
168 | # "mod3" and "mod4" (windows-key). | |
169 | # Xev might be helpful to find names for keys. | |
170 | ||
171 | # Close notification. | |
172 | close = ctrl+space | |
173 | ||
174 | # Close all notifications. | |
175 | close_all = ctrl+shift+space | |
176 | ||
177 | # Redisplay last message(s). | |
178 | # On the US keyboard layout "grave" is normally above TAB and left | |
179 | # of "1". | |
180 | history = ctrl+grave | |
181 | ||
182 | # Context menu. | |
183 | context = ctrl+shift+period | |
184 | ||
185 | [urgency_low] | |
186 | # IMPORTANT: colors have to be defined in quotation marks. | |
187 | # Otherwise the "#" and following would be interpreted as a comment. | |
188 | background = "#3a3a3a" | |
189 | foreground = "#dcdccc" | |
190 | frame_color = "#3f3f3f" | |
191 | timeout = 30 | |
192 | ||
193 | [urgency_normal] | |
194 | background = "#dcdccc" | |
195 | foreground = "#3a3a3a" | |
196 | frame_color = "#3f3f3f" | |
197 | timeout = 60 | |
198 | ||
199 | [urgency_critical] | |
200 | background = "#705050" | |
201 | foreground = "#dcdccc" | |
202 | frame_color = "#3f3f3f" | |
203 | timeout = 0 | |
204 | ||
205 | [beep_normal] | |
206 | msg_urgency = normal | |
207 | script = dunst_beep_normal | |
208 | ||
209 | [beep_critical] | |
210 | msg_urgency = critical | |
211 | script = dunst_beep_critical | |
212 | ||
213 | ||
214 | # Every section that isn't one of the above is interpreted as a rules to | |
215 | # override settings for certain messages. | |
216 | # Messages can be matched by "appname", "summary", "body", "icon", "category", | |
217 | # "msg_urgency" and you can override the "timeout", "urgency", "foreground", | |
218 | # "background", "new_icon" and "format". | |
219 | # Shell-like globbing will get expanded. | |
220 | # | |
221 | # SCRIPTING | |
222 | # You can specify a script that gets run when the rule matches by | |
223 | # setting the "script" option. | |
224 | # The script will be called as follows: | |
225 | # script appname summary body icon urgency | |
226 | # where urgency can be "LOW", "NORMAL" or "CRITICAL". | |
227 | # | |
228 | # NOTE: if you don't want a notification to be displayed, set the format | |
229 | # to "". | |
230 | # NOTE: It might be helpful to run dunst -print in a terminal in order | |
231 | # to find fitting options for rules. | |
232 | ||
233 | #[espeak] | |
234 | # summary = "*" | |
235 | # script = dunst_espeak.sh | |
236 | ||
237 | #[script-test] | |
238 | # summary = "*script*" | |
239 | # script = dunst_test.sh | |
240 | ||
241 | #[ignore] | |
242 | # # This notification will not be displayed | |
243 | # summary = "foobar" | |
244 | # format = "" | |
245 | ||
246 | #[signed_on] | |
247 | # appname = Pidgin | |
248 | # summary = "*signed on*" | |
249 | # urgency = low | |
250 | # | |
251 | #[signed_off] | |
252 | # appname = Pidgin | |
253 | # summary = *signed off* | |
254 | # urgency = low | |
255 | # | |
256 | #[says] | |
257 | # appname = Pidgin | |
258 | # summary = *says* | |
259 | # urgency = critical | |
260 | # | |
261 | #[twitter] | |
262 | # appname = Pidgin | |
263 | # summary = *twitter.com* | |
264 | # urgency = normal | |
265 | # | |
266 | # vim: ft=cfg |