Skip to content

Instantly share code, notes, and snippets.

@rbreaves
Created October 28, 2025 16:15
Show Gist options
  • Select an option

  • Save rbreaves/cb15fb08bb64d522752ae23affa28df2 to your computer and use it in GitHub Desktop.

Select an option

Save rbreaves/cb15fb08bb64d522752ae23affa28df2 to your computer and use it in GitHub Desktop.
Move all apps to primary desktop - macOS
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