Skip to content

Instantly share code, notes, and snippets.

@kristophercrawford
Created July 6, 2022 15:35
Show Gist options
  • Save kristophercrawford/0b6de0eb212f54b7b69b2b11e807e7e9 to your computer and use it in GitHub Desktop.
Save kristophercrawford/0b6de0eb212f54b7b69b2b11e807e7e9 to your computer and use it in GitHub Desktop.
(* This AppleScript will resize the current application window to the height specified below and center it in the screen. Compiled with code from Natanial Wools and Amit Agarwal *)
set the_application to (path to frontmost application as Unicode text)
set appHeight to 1080
set appWidth to 1920
tell application "Finder"
set screenResolution to bounds of window of desktop
end tell
set screenWidth to item 3 of screenResolution
set screenHeight to item 4 of screenResolution
tell application the_application
activate
reopen
set yAxis to (screenHeight - appHeight) / 2 as integer
set xAxis to (screenWidth - appWidth) / 2 as integer
set the bounds of the first window to {xAxis, yAxis, appWidth + xAxis, appHeight + yAxis}
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment