Add dunst config from Frame...
dblume authored 11 months ago
|
1) # Compare with original at /etc/xdg/dunst/dunstrc or /etc/dunst/dunstrc
2)
3) [global]
4) ### Display ###
5)
6) # Which monitor should the notifications be displayed on.
7) monitor = 0
8)
9) # Display notification on focused monitor. Possible modes are:
10) # mouse: follow mouse pointer
11) # keyboard: follow window with keyboard focus
12) # none: don't follow anything
13) #
14) # "keyboard" needs a window manager that exports the
15) # _NET_ACTIVE_WINDOW property.
16) # This should be the case for almost all modern window managers.
17) #
18) # If this option is set to mouse or keyboard, the monitor option
19) # will be ignored.
20) follow = mouse
21)
22) # The geometry of the window:
23) # [{width}]x{height}[+/-{x}+/-{y}]
24) # The geometry of the message window.
25) # The height is measured in number of notifications everything else
26) # in pixels. If the width is omitted but the height is given
27) # ("-geometry x2"), the message window expands over the whole screen
28) # (dmenu-like). If width is 0, the window expands to the longest
29) # message displayed. A positive x is measured from the left, a
30) # negative from the right side of the screen. Y is measured from
31) # the top and down respectively.
32) # The width can be negative. In this case the actual width is the
33) # screen width minus the width defined in within the geometry option.
|