Tagged Questions
1
vote
1answer
73 views
iTerm 2 change row size using AppleScript
I want to change the height of my terminal window using a script. Currently this is what I have come up with:
tell application "iTerm"
activate
tell the current terminal
tell the ...
2
votes
1answer
745 views
Programmatically set the color of a tab in iTerm2?
My daily workflow includes me
Launching iTerm2
Creating 3 tabs
Setting one tab each to red, orange and yellow
Changing to a specific path in each tab
I would like to script this process; shell, ...
3
votes
0answers
162 views
iTerm2: How to get output of a shell command with applescript
I want to get the output of a shell command run through iTerm2's applescript into an applescript variable. I tried the following but it does not work:
tell application "iTerm"
activate
try
...