JunoLab / Juno.jl

MIT License
144 stars 23 forks source link

[BUG] Setting the external terminal doesn't seem to change anything #559

Open NightMachinery opened 4 years ago

NightMachinery commented 4 years ago

I tried image

It still opened macOS's builtin terminal app.

NightMachinery commented 4 years ago

I have created the launch script and set it in settings, but still no luck.

Terminal set to /Users/evar/scripts/dash/itermlaunch.dash: image

itermlaunch.dash:

#!/usr/bin/env dash
command="$@"
osascript <<EOF
        tell application "iTerm2"
          tell current window
            create tab with default profile
            tell current session to write text "${command}"
          end tell
        end tell
EOF