Skip to content

Instantly share code, notes, and snippets.

@criaturaExperimental
Last active October 19, 2017 09:41
Show Gist options
  • Select an option

  • Save criaturaExperimental/acfc88452281bfc429db65c207623e8c to your computer and use it in GitHub Desktop.

Select an option

Save criaturaExperimental/acfc88452281bfc429db65c207623e8c to your computer and use it in GitHub Desktop.
Parallel tasks runners in iterm2 (3) applescript
tell application "iTerm"
create window with profile "Positiv"
tell current session of current window
set secondary to split vertically with profile "miniPositiv"
tell secondary
set columns to 50
delay 1
write text "gulp watch"
delay 3
set terciary to split horizontally with profile "miniPositiv"
tell terciary
delay 1
write text "ionic serve --lab"
end tell
end tell
end tell
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment