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