Skip to content

Instantly share code, notes, and snippets.

@yuu
Last active May 22, 2020 10:47
Show Gist options
  • Save yuu/0efebc3da810d657754ba0732201396f to your computer and use it in GitHub Desktop.
Save yuu/0efebc3da810d657754ba0732201396f to your computer and use it in GitHub Desktop.
Dismiss the popup notification in macos notification center #touchbar #bettertouchtool

dismiss the popup notification

BetterTouchTool

-> Touch Bar Trigger Configuration
-> Apple Script
-> Run Apple Script (blocking)

tell application "System Events"
tell process "Notification Center"
set theWindows to every window
-- repeat with i from 1 to number of items in theWindows
set this_item to item 1 of theWindows
click button 1 of this_item
-- end repeat
end tell
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment