Last active
December 19, 2015 11:59
-
-
Save tomhodgins/5951439 to your computer and use it in GitHub Desktop.
Silkuli Script to launch my daily work routine :) Don't forget to add your MAMP password.
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
#Launch Web Server | |
openApp("MAMP") | |
sleep(1) | |
type('add_your_password_here') | |
type(Key.ENTER) | |
sleep(1) | |
type('h', Key.CMD) | |
#Launch Source Control and update Git | |
openApp("SourceTree") | |
sleep(2) | |
type('b', Key.CMD) | |
while exists("real-estate-mogul-dev.jpg"): | |
doubleClick() | |
while exists("real-estate-mogul-dev-selected.jpg"): | |
doubleClick() | |
click("pull.jpg") | |
click("ok.jpg") | |
type('h', Key.CMD) | |
# Launch Skype and Email | |
openApp("Skype") | |
sleep(5) | |
type('h', Key.CMD) | |
openApp("Sparrow") | |
sleep(4) | |
type('h', Key.CMD) | |
#Launch Xcode | |
openApp("Xcode") | |
while exists("project-selected.jpg"): | |
type(Key.ENTER) | |
while exists("project.jpg"): | |
type(Key.ENTER) | |
#Back to the Desktop | |
openApp("Finder") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment