Skip to content

Instantly share code, notes, and snippets.

@Koze
Last active December 9, 2023 20:07
Show Gist options
  • Save Koze/eed4a43de0db0f368c9c to your computer and use it in GitHub Desktop.
Save Koze/eed4a43de0db0f368c9c to your computer and use it in GitHub Desktop.
Launch application, Quit application with AppleScript
# launch application
tell application "TextEdit" to run
# launch and activate application
tell application "TextEdit" to activate
# quit application
tell application "TextEdit" to quit
# restart application
tell application "TextEdit"
quit
delay 3
activate
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment