Skip to content

Instantly share code, notes, and snippets.

@robotsandcake
Last active June 14, 2019 21:20
Show Gist options
  • Save robotsandcake/7ddb10ce42c1cf4274999e7b60113c7a to your computer and use it in GitHub Desktop.
Save robotsandcake/7ddb10ce42c1cf4274999e7b60113c7a to your computer and use it in GitHub Desktop.
AppleScript to change visibility of given applications.
tell application "System Events"
-- Replace opera and VLC with the applications you want to influence
-- He can have as many as you like, each one on a new line
set visible of application process "Opera" to false
set visible of application process "VLC" to false
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment