From 92a21487b2cf2a91c84325a44df99a4386c71432 Mon Sep 17 00:00:00 2001 From: Michael Krasnitski Date: Sun, 5 Apr 2020 21:45:56 -0400 Subject: [PATCH] Make some changes to default dunstrc These make it more clear to the user that the mouse_click options can be defined as lists. --- dunstrc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dunstrc b/dunstrc index c226e9a..9718191 100644 --- a/dunstrc +++ b/dunstrc @@ -238,15 +238,17 @@ ### mouse - # Defines action of mouse event + # Defines list of actions for each mouse event # Possible values are: # * none: Don't do anything. # * 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. # * close_current: Close current notification. # * 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_middle_click = do_action + mouse_middle_click = do_action, close_current mouse_right_click = close_all # Experimental features that may or may not work correctly. Do not expect them