Skip to content

Instantly share code, notes, and snippets.

@olivmonnier
Last active January 17, 2024 22:36
Show Gist options
  • Save olivmonnier/a55b2e2bbd6e47361412 to your computer and use it in GitHub Desktop.
Save olivmonnier/a55b2e2bbd6e47361412 to your computer and use it in GitHub Desktop.
Applescript - Launch application and resize window
tell application "Safari" to activate
set x to 187
set y to 22
set w to 973
set h to 816
tell application "System Events"
tell process "Safari" to get first window
set this_window to result
set position of this_window to {x, y}
set size of this_window to {w, h}
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment