Last active
November 17, 2020 21:07
-
-
Save milanpanchal/fdc9f0c609cd82b3f2f951cbbe190382 to your computer and use it in GitHub Desktop.
Clearing All Notifications in Mac OS X through Apples Automator App by writing JavaScript Code
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
// https://medium.com/@milanpanchal24/clearing-all-notifications-in-mac-os-x-3be0a16eb2a3 | |
function run(input, parameters) { | |
var app = Application('System Events'); | |
app.includeStandardAdditions = true; | |
app.processes.byName('NotificationCenter').windows.buttons[0].click(); | |
return input; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment