I noticed that as of dunst v1.5.0, my middle mouse click context menu stopped working. Specifically, pressing the middle mouse button on a notification results in the notification closing with nothing happening. Keyboard shortcuts for the context menu still work though. Actually got around to debugging it today, and was able to determine the multiple command setting of mouse_middle_click = do_action, close_current in the configuration causes the issue. If I remove the close_current, the context menu shows up just fine.
To test I've been using this command I that I saw when looking at other issues:
dunstify --action="replyAction,reply" --action="closeAction,close" "Message received"
I ran dunst with dunst -print -verbosity debug to see if there is any information there. I do see a small difference in the log depending on the configuration, though I'm not sure if it would be much help. I've stripped out the Screen change and ignored XEvents, as well as the common set of events:
mouse_middle_click = do_action, close_current:
DEBUG: XEvent: processing 'Expose'
DEBUG: XEvent: processing 'ButtonRelease'
DEBUG: RUN
DEBUG: RUN
mouse_middle_click = do_action:
DEBUG: XEvent: processing 'Expose'
DEBUG: XEvent: processing 'ButtonRelease'
DEBUG: RUN
DEBUG: XEvent: processing 'CreateNotify'
DEBUG: RUN
DEBUG: RUN
Installation info
- Version:
1.5.0 (2020-07-23)
- Install type:
package
- Distro and version:
Arch Linux
I noticed that as of dunst v1.5.0, my middle mouse click context menu stopped working. Specifically, pressing the middle mouse button on a notification results in the notification closing with nothing happening. Keyboard shortcuts for the context menu still work though. Actually got around to debugging it today, and was able to determine the multiple command setting of
mouse_middle_click = do_action, close_currentin the configuration causes the issue. If I remove theclose_current, the context menu shows up just fine.To test I've been using this command I that I saw when looking at other issues:
dunstify --action="replyAction,reply" --action="closeAction,close" "Message received"I ran dunst with
dunst -print -verbosity debugto see if there is any information there. I do see a small difference in the log depending on the configuration, though I'm not sure if it would be much help. I've stripped out the Screen change and ignored XEvents, as well as the common set of events:mouse_middle_click = do_action, close_current:mouse_middle_click = do_action:Installation info
1.5.0 (2020-07-23)packageArch Linux