Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Close notification with middle mouse button #413

Merged
merged 3 commits into from
May 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ To reload css after changes
- Shift+D: Toggle Do Not Disturb
- Buttons 1-9: Execute alternative actions
- Left click button / actions: Activate notification action
- Right click notification: Close notification
- Middle/Right click notification: Close notification

## Configuring

Expand Down
2 changes: 1 addition & 1 deletion man/swaync.1.scd
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ swaync - A simple notification daemon with a GTK gui for notifications and the c

*Left click button / actions*: Activate notification action

*Right click notification*: Close notification
*Middle/Right click notification*: Close notification

# CONFIGURATION

Expand Down
13 changes: 9 additions & 4 deletions src/notification/notification.vala
Original file line number Diff line number Diff line change
Expand Up @@ -206,10 +206,15 @@ namespace SwayNotificationCenter {
///

this.button_press_event.connect ((event) => {
if (event.button != Gdk.BUTTON_SECONDARY) return false;
// Right click
this.close_notification ();
return true;
// Close notification on middle and right button click
switch (event.button) {
case Gdk.BUTTON_MIDDLE:
case Gdk.BUTTON_SECONDARY:
this.close_notification ();
return true;
default:
return false;
}
});

// Adds CSS :hover selector to EventBox
Expand Down
Loading