Created
August 11, 2011 10:22
-
-
Save philippbosch/1139327 to your computer and use it in GitHub Desktop.
«Work On» Alfred extension
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
on alfred_script(q) | |
tell application "iTerm" | |
activate | |
try | |
set _term to last terminal | |
on error | |
set _term to (make new terminal) | |
end try | |
tell _term | |
launch session "Default Session" | |
tell the last session | |
write text "workon " & q | |
end tell | |
end tell | |
end tell | |
open location "http://" & q & ":8000/" | |
set homedir to (path to home folder) as string | |
tell application "TextMate" | |
open homedir & "Sites:" & q | |
end tell | |
end alfred_script |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment