Created
June 27, 2016 06:41
-
-
Save onevcat/6a7ff7fcc1c76dfc09d8f811eab8a721 to your computer and use it in GitHub Desktop.
Fix Tower's "Open in Terminal" command with iTerm 3. Replace the content of /Applications/Tower.app/Contents/Resources/iTerm.applescript to this:
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 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment