Update dunstrc for post-upscaling starts
[khome.git] / home / .config / dunst / dunstrc
CommitLineData
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.
479c4494 41 #bounce_freq = 0
d101fbe9
SK
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
8ff4502b 72 #geometry = "0x10-5+35"
5faac607
SK
73
74 #offset = 10x45
75 #font = Iosevka 20
76
77 offset = 2x20 # left x top
78 font = Iosevka 11
79
8ff4502b 80 width = (100, 2100)
479c4494 81 height = 3000
d101fbe9
SK
82
83 # 3440x1440
915de5bf 84 #geometry = "400x80-0+30"
fa29212b 85 #font = Iosevka Fixed SS09 Extended 12
d101fbe9
SK
86
87 # Shrink window if it's smaller than the width. Will be ignored if
88 # width is 0.
89 shrink = no
90
91 # The transparency of the window. Range: [0; 100].
92 # This option will only work if a compositing windowmanager is
93 # present (e.g. xcompmgr, compiz, etc.).
94 #transparency = 25
95
96 # Don't remove messages, if the user is idle (no mouse or keyboard input)
97 # for longer than idle_threshold seconds.
98 # Set to 0 to disable.
99 idle_threshold = 300
100
101 # Which monitor should the notifications be displayed on.
102 monitor = 0
103
104 # Display notification on focused monitor. Possible modes are:
105 # mouse: follow mouse pointer
106 # keyboard: follow window with keyboard focus
107 # none: don't follow anything
108 #
109 # "keyboard" needs a windowmanager that exports the
110 # _NET_ACTIVE_WINDOW property.
111 # This should be the case for almost all modern windowmanagers.
112 #
113 # If this option is set to mouse or keyboard, the monitor option
114 # will be ignored.
115 follow = mouse
116
117 # Should a notification popped up from history be sticky or timeout
118 # as if it would normally do.
119 sticky_history = yes
120
121 # Maximum amount of notifications kept in history
122 history_length = 1000
123
124 # Display indicators for URLs (U) and actions (A).
125 show_indicators = yes
126
127 # The height of a single line. If the height is smaller than the
128 # font height, it will get raised to the font height.
129 # This adds empty space above and under the text.
130 line_height = 0
131
132 # Draw a line of "separatpr_height" pixel height between two
133 # notifications.
134 # Set to 0 to disable.
135 separator_height = 1
136
137 # Padding between text and separator.
138 padding = 8
139
140 # Horizontal padding.
141 horizontal_padding = 8
142
143 # Define a color for the separator.
144 # possible values are:
145 # * auto: dunst tries to find a color fitting to the background;
146 # * foreground: use the same color as the foreground;
147 # * frame: use the same color as the frame;
148 # * anything else will be interpreted as a X color.
149 separator_color = frame
150
151 # Print a notification on startup.
152 # This is mainly for error detection, since dbus (re-)starts dunst
153 # automatically after a crash.
479c4494 154 #startup_notification = true
d101fbe9
SK
155
156 # dmenu path.
157 dmenu = /usr/bin/dmenu -p dunst:
158
159 # Browser for opening urls in context menu.
8ff4502b 160 browser = firefox
d101fbe9
SK
161
162 # Align icons left/right/off
163 icon_position = off
164
165 # Paths to default icons.
166 #icon_path = /usr/share/icons/gnome/16x16/status/:/usr/share/icons/gnome/16x16/devices/
167 #icon_path = /usr/share/icons/Humanity/status/16
168 #icon_path = /usr/share/icons/breeze-dark/status/64
169 #icon_path = /usr/share/icons/oxygen/16x16/status/
170
479c4494
SK
171#[shortcuts]
172#
173# # Shortcuts are specified as [modifier+][modifier+]...key
174# # Available modifiers are "ctrl", "mod1" (the alt-key), "mod2",
175# # "mod3" and "mod4" (windows-key).
176# # Xev might be helpful to find names for keys.
177#
178# # Close notification.
179# close = ctrl+space
180#
181# # Close all notifications.
182# close_all = ctrl+shift+space
183#
184# # Redisplay last message(s).
185# # On the US keyboard layout "grave" is normally above TAB and left
186# # of "1".
187# history = ctrl+grave
188#
189# # Context menu.
190# context = ctrl+shift+period
d101fbe9
SK
191
192[urgency_low]
193 # IMPORTANT: colors have to be defined in quotation marks.
194 # Otherwise the "#" and following would be interpreted as a comment.
195 background = "#3a3a3a"
196 foreground = "#dcdccc"
197 frame_color = "#3f3f3f"
198 timeout = 30
199
200[urgency_normal]
201 background = "#dcdccc"
202 foreground = "#3a3a3a"
203 frame_color = "#3f3f3f"
204 timeout = 60
205
206[urgency_critical]
207 background = "#705050"
208 foreground = "#dcdccc"
209 frame_color = "#3f3f3f"
210 timeout = 0
211
212[beep_normal]
213 msg_urgency = normal
214 script = dunst_beep_normal
215
216[beep_critical]
217 msg_urgency = critical
218 script = dunst_beep_critical
219
220
221# Every section that isn't one of the above is interpreted as a rules to
222# override settings for certain messages.
223# Messages can be matched by "appname", "summary", "body", "icon", "category",
224# "msg_urgency" and you can override the "timeout", "urgency", "foreground",
225# "background", "new_icon" and "format".
226# Shell-like globbing will get expanded.
227#
228# SCRIPTING
229# You can specify a script that gets run when the rule matches by
230# setting the "script" option.
231# The script will be called as follows:
232# script appname summary body icon urgency
233# where urgency can be "LOW", "NORMAL" or "CRITICAL".
234#
235# NOTE: if you don't want a notification to be displayed, set the format
236# to "".
237# NOTE: It might be helpful to run dunst -print in a terminal in order
238# to find fitting options for rules.
239
240#[espeak]
241# summary = "*"
242# script = dunst_espeak.sh
243
244#[script-test]
245# summary = "*script*"
246# script = dunst_test.sh
247
248#[ignore]
249# # This notification will not be displayed
250# summary = "foobar"
251# format = ""
252
253#[signed_on]
254# appname = Pidgin
255# summary = "*signed on*"
256# urgency = low
257#
258#[signed_off]
259# appname = Pidgin
260# summary = *signed off*
261# urgency = low
262#
263#[says]
264# appname = Pidgin
265# summary = *says*
266# urgency = critical
267#
268#[twitter]
269# appname = Pidgin
270# summary = *twitter.com*
271# urgency = normal
272#
273# vim: ft=cfg
This page took 0.08451 seconds and 4 git commands to generate.