Make some changes to default dunstrc

These make it more clear to the user that the mouse_click
options can be defined as lists.
This commit is contained in:
Michael Krasnitski 2020-04-05 21:45:56 -04:00
parent 8bcc3070fb
commit 92a21487b2

View File

@ -238,15 +238,17 @@
### mouse ### mouse
# Defines action of mouse event # Defines list of actions for each mouse event
# Possible values are: # Possible values are:
# * none: Don't do anything. # * none: Don't do anything.
# * do_action: If the notification has exactly one action, or one is marked as default, # * do_action: If the notification has exactly one action, or one is marked as default,
# invoke it. If there are multiple and no default, open the context menu. # invoke it. If there are multiple and no default, open the context menu.
# * close_current: Close current notification. # * close_current: Close current notification.
# * close_all: Close all notifications. # * close_all: Close all notifications.
# These values can be strung together for each mouse event, and
# will be executed in sequence.
mouse_left_click = close_current mouse_left_click = close_current
mouse_middle_click = do_action mouse_middle_click = do_action, close_current
mouse_right_click = close_all mouse_right_click = close_all
# Experimental features that may or may not work correctly. Do not expect them # Experimental features that may or may not work correctly. Do not expect them