Skip to content

Instantly share code, notes, and snippets.

@ksloan
Created November 26, 2019 17:34
Show Gist options
  • Save ksloan/3bd67f5cbeb73ad4beb26164f95a6c8a to your computer and use it in GitHub Desktop.
Save ksloan/3bd67f5cbeb73ad4beb26164f95a6c8a to your computer and use it in GitHub Desktop.
Dismiss Notifications Automator Script
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