Last active
April 8, 2023 23:42
-
-
Save gnachman/49cd5f8bcadc874ea8fc to your computer and use it in GitHub Desktop.
Replace /Applications/Docker/Docker Quickstart Terminal.app/Contents/Resources/Scripts/iterm.scpt with 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
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 |
With respect to "Expected end of line", I needed to replace in the .scpt file, "iTerm" with "iTerm2".
Yes master! This is it looking for I was.
This works. Thanks.
Cheers, thanks for sharing.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Am I the only one getting this error?