Last active
June 14, 2019 21:20
-
-
Save robotsandcake/7ddb10ce42c1cf4274999e7b60113c7a to your computer and use it in GitHub Desktop.
AppleScript to change visibility of given applications.
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
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