Replies: 2 comments 11 replies
-
I don't think so - modern macOS doesn't actually render windows across multiple screens anymore, right? Try dragging a window to be half-in and half-out and once you let go of the drag, only one screen is left showing the window. My educated guess is that Rectangle couldn't change that system-level behavior. |
Beta Was this translation helpful? Give feedback.
11 replies
-
Anyone landing, I've created a very hacky Applescript to move windows across multiple screens and assigned it to a keyboard shortcut. set windowTitle to ""
tell application "System Events"
set windowTitle to name of first application process whose frontmost is true
end tell
tell application "System Events"
set position of first window of application process windowTitle to {4800, 0}
set size of first window of application process windowTitle to {1600, 1800}
end tell |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a 2 display setup with the second screen set as "extended desktop", is it possible for rectangle to maximise my app window across the whole 2 screen desktop?
Beta Was this translation helpful? Give feedback.
All reactions