Skip to content

Instantly share code, notes, and snippets.

@garethrees
Created February 22, 2018 13:22
Show Gist options
  • Save garethrees/944a8657bd44a67e6d8a41b55a369ccf to your computer and use it in GitHub Desktop.
Save garethrees/944a8657bd44a67e6d8a41b55a369ccf to your computer and use it in GitHub Desktop.
AppleScript Resize Window
# Via https://alvinalexander.com/source-code/mac-os-x/how-size-or-resize-application-windows-applescript
# { xpos, ypos, width, height }
osascript <<-EOF
tell application "iTerm2"
set bounds of front window to {0, 0, 1200, 1440}
end tell
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment