Created
June 1, 2025 19:20
-
-
Save gingerbeardman/9c2df74528c8ff911bc1f09ef942941c to your computer and use it in GitHub Desktop.
Dismiss all notifications
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
osascript -e ' | |
tell application "System Events" | |
tell process "NotificationCenter" | |
if not (window "Notification Center" exists) then return | |
set alertGroups to groups of first UI element of first scroll area of first group of window "Notification Center" | |
repeat with aGroup in alertGroups | |
try | |
perform (first action of aGroup whose name contains "Close" or name contains "Clear") | |
on error errMsg | |
log errMsg | |
end try | |
end repeat | |
-- Show no message on success | |
return "" | |
end tell | |
end tell' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
cf: https://www.reddit.com/r/MacOS/comments/1f92zj7/comment/lljccxb/