Skip to content

Instantly share code, notes, and snippets.

View tyssen's full-sized avatar

John Faulds tyssen

View GitHub Profile
@onevcat
onevcat / iTerm.applescript
Created June 27, 2016 06:41
Fix Tower's "Open in Terminal" command with iTerm 3. Replace the content of /Applications/Tower.app/Contents/Resources/iTerm.applescript to this:
on execute(filename)
set command_string to quoted form of filename
tell application "System Events"
do shell script "Open -a iTerm " & command_string
end tell
end execute