Last active
August 31, 2023 18:54
-
-
Save corypina/3131351 to your computer and use it in GitHub Desktop.
Resize front window to specific size.
This file contains hidden or 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" | |
set frontmostApplication to name of the first process whose frontmost is true | |
end tell | |
-- The bounds are the top-left and bottom-right coordinates on your screen, eg. {x, y, x, y} | |
tell application frontmostApplication | |
set bounds of the first window to {15, 38, 1760, 995} | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
you're the best