Created
October 28, 2025 16:15
-
-
Save rbreaves/cb15fb08bb64d522752ae23affa28df2 to your computer and use it in GitHub Desktop.
Move all apps to primary desktop - macOS
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" | |
| tell application processes | |
| repeat with proc in it | |
| try | |
| repeat with w in windows of proc | |
| set position of w to {0, 0} | |
| end repeat | |
| end try | |
| end repeat | |
| end tell | |
| end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment