Skip to content

Instantly share code, notes, and snippets.

@PisoMojado
Last active September 3, 2017 20:22
Show Gist options
  • Save PisoMojado/c6f872914e74217a3b52e84a867459e0 to your computer and use it in GitHub Desktop.
Save PisoMojado/c6f872914e74217a3b52e84a867459e0 to your computer and use it in GitHub Desktop.
New Terminal Window Script for macOS
#!/usr/bin/env bash
NEW_TERM_SCRIPT=$(cat <<EOF
on run {}
tell application "Terminal"
do script ""
activate
end tell
return
end run
EOF
)
osascript -e "${NEW_TERM_SCRIPT}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment