Files
dotfiles/home/.bin/clear-notifications
T
2026-09-17 07:38:45 +01:00

13 lines
368 B
AppleScript
Executable File

#!/usr/bin/osascript
tell application "BetterTouchTool"
trigger_action "{ BTTPredefinedActionType: 122}" -- Toggle Notification Center (Open)
trigger_action "{ BTTPredefinedActionType: 289}" -- Clear notifications
end tell
delay 1
tell application "BetterTouchTool"
trigger_action "{ BTTPredefinedActionType: 122}" -- Toggle Notification Center (Close)
end tell