Last active
December 12, 2015 00:08
-
-
Save hannestyden/4681510 to your computer and use it in GitHub Desktop.
This file contains 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
-- Close annoying notification windows that you can't Cmd+Tab to. | |
-- From: http://www.mentby.com/stockly-ed/window-watcher.html | |
tell application "System Events" | |
try | |
set unc to application process "UserNotificationCenter" | |
activate unc | |
set uncw to window 1 of unc | |
repeat with label in {"OK", "Close", "Ignore", "Cancel"} | |
try | |
click button label of uncw | |
end try | |
end repeat | |
end try | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
👍