Skip to content

Instantly share code, notes, and snippets.

@trent-boyd
Created February 9, 2013 01:24
Show Gist options
  • Save trent-boyd/4743391 to your computer and use it in GitHub Desktop.
Save trent-boyd/4743391 to your computer and use it in GitHub Desktop.
Applescript: Arrange Windows w/ Moom
-- Move to Space 1
tell application "System Events" to keystroke (key code 105)
delay 1
tell application "Moom" to arrange windows according to snapshot named "Development Panel"
-- Move to Space 2
tell application "System Events" to keystroke (key code 107)
delay 1
tell application "Moom" to arrange windows according to snapshot named "Communication Panel"
-- Move to Space 3
tell application "System Events" to keystroke (key code 113)
delay 1
tell application "Moom" to arrange windows according to snapshot named "Productivity Panel"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment