.config/dunst/dunstrc

changeset 292
8e6e4b64eb2e
equal deleted inserted replaced
291:c9832253606a 292:8e6e4b64eb2e
1 [global]
2 font = Sans 18
3
4 allow_markup = yes
5
6 # The format of the message. Possible variables are:
7 # %a appname
8 # %s summary
9 # %b body
10 # %i iconname (including its path)
11 # %I iconname (without its path)
12 format = "<b>%s</b>\n%b"
13
14 # Sort messages by urgency
15 sort = yes
16
17 # Show how many messages are currently hidden (because of geometry)
18 indicate_hidden = yes
19
20 # keybindings to remove notification
21 # available modifiers are 'ctrl', 'mod1' (the alt-key), 'mod2', 'mod3'
22 # and 'mod4' (windows-key)
23 modifier = ctrl
24
25 # use xev to find the names for keys
26 key = space
27 # key to redisplay last message(s)
28 history_key = grave
29
30 # the geometry of the window
31 # geometry [{width}]x{height}][+/-{x}+/-{y}]
32 # The geometry of the message window.
33 # The height is measured in lines everything else in pixels. If the width
34 # is omitted but the height is given ("-geometry x2"), the message window
35 # expands over the whole screen (dmenu-like). If width is 0,
36 # the window expands to the longest message displayed.
37 # A positive x is measured from the left, a negative from the
38 # right side of the screen. Y is measured from the top and down respectevly.
39 geometry = "0x2-32-32"
40
41 # Don't remove messages, if the user is idle (no mouse or keyboard input)
42 # for longer than idle_threshold seconds.
43 # Set to 0 to disable.
44 idle_threshold = 120
45
46 [urgency_low]
47 # IMPORTANT: colors have to be defined in quotation marks.
48 # Otherwise the '#' and following would be interpreted as a comment.
49 background = "#aaaaff"
50 foreground = "#000000"
51 timeout = 10
52
53 [urgency_normal]
54 background = "#1793D1"
55 foreground = "#DDDDDD"
56 timeout = 10
57
58 [urgency_critical]
59 background = "#ffaaaa"
60 foreground = "#000000"
61 timeout = 0
62
63
64 # Every section that isn't one of the above is interpreted as a rules
65 # to override settings for certain messages.
66 # Messages can be matched by 'appname', 'summary', 'body' or 'icon'
67 # and you can override the 'timeout', 'urgency', 'foreground', 'background'
68 # and 'format'.
69 # Shell-like globbing will get expanded.
70
71 #[signed_on]
72 # appname = Pidgin
73 # summary = "*signed on*"
74 # urgency = low
75 #
76 #[signed_off]
77 # appname = Pidgin
78 # summary = *signed off*
79 # urgency = low
80 #
81 #[says]
82 # appname = Pidgin
83 # summary = *says*
84 # urgency = critical
85 #
86 #[twitter]
87 # appname = Pidgin
88 # summary = *twitter.com*
89 # urgency = normal

mercurial