Skip to content

Instantly share code, notes, and snippets.

@dillonhafer
Created July 12, 2017 13:19
Show Gist options
  • Save dillonhafer/fd92fd03ecc0976346f3c3bdf26c2f95 to your computer and use it in GitHub Desktop.
Save dillonhafer/fd92fd03ecc0976346f3c3bdf26c2f95 to your computer and use it in GitHub Desktop.
Apple script for iTerm
#!/usr/bin/osascript
tell application "iTerm2"
tell current window
set serverTab to (create tab with default profile)
tell sessions[1] of serverTab to split vertically with default profile
tell sessions[1] of serverTab to write text "yarn start"
tell sessions[2] of serverTab to write text "yarn run watch-css"
select first tab
end tell
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment