Skip to content

Instantly share code, notes, and snippets.

@karstengresch
Forked from gnachman/iterm.scpt
Created March 26, 2018 09:27
Show Gist options
  • Save karstengresch/540c21cc6e959469d356933290135dad to your computer and use it in GitHub Desktop.
Save karstengresch/540c21cc6e959469d356933290135dad to your computer and use it in GitHub Desktop.
Replace /Applications/Docker/Docker Quickstart Terminal.app/Contents/Resources/Scripts/iterm.scpt with this.
set itermRunning to (application "iTerm" is running)
set scriptPath to quoted form of POSIX path of ((path to me as text) & "::" & "start.sh")
set user_shell to do shell script "dscl /Search -read /Users/$USER UserShell | awk '{print $2}'"
tell application "iTerm"
activate
if not (exists window 1) or (itermRunning = false) then
reopen
end if
try
tell current window
set newTab to (create tab with default profile)
tell current session of newTab
write text "bash --login " & scriptPath
end tell
end tell
on error
tell current session of (create window with default profile)
write text "bash --login " & scriptPath
end tell
end try
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment