Skip to content

Instantly share code, notes, and snippets.

@TimRots
Created March 1, 2020 23:04
Show Gist options
  • Save TimRots/4428278a609bb3c2142e109f2fd4396d to your computer and use it in GitHub Desktop.
Save TimRots/4428278a609bb3c2142e109f2fd4396d to your computer and use it in GitHub Desktop.
iTerm2 2x2 window split
#!/usr/bin/osascript
tell application "iTerm2"
tell current session of current tab of current window
split horizontally with default profile
split vertically with default profile
end tell
tell third session of current tab of current window
split vertically with default profile
end tell
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment