Skip to content

Instantly share code, notes, and snippets.

@schlady
Created September 29, 2015 16:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save schlady/6726a5bdf57aa03f1248 to your computer and use it in GitHub Desktop.
Save schlady/6726a5bdf57aa03f1248 to your computer and use it in GitHub Desktop.
Create a new iTerm window wherever you are. Save this gist as an Automator Service and assign a shortcut to it.
if application "iTerm" is running then
tell application "iTerm"
activate
set myterm to (make new terminal)
tell myterm
launch session "Default"
end tell
end tell
else
activate application "iTerm"
end if
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment