Created
February 9, 2013 01:24
-
-
Save trent-boyd/4743391 to your computer and use it in GitHub Desktop.
Applescript: Arrange Windows w/ Moom
This file contains 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
-- 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