Skip to content

Instantly share code, notes, and snippets.

@kasper
Created December 12, 2014 17:15
Show Gist options
  • Save kasper/c26890b44e32a4303216 to your computer and use it in GitHub Desktop.
Save kasper/c26890b44e32a4303216 to your computer and use it in GitHub Desktop.
Launch Mail hidden with JavaScript in OS X Yosemite
// Launch Mail hidden
Application('Mail').activate();
delay(1);
var mail = Application('System Events').processes['Mail'];
mail.visible = false;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment