Increase/Decrease Font Size in iTerm2

There's a really shitty and buggy way to automate this, but I'll post it anyway.

You can create a new profile in the iTerm2's preferences (the Profile pane). Let's call it "LargeFont". You can clone it from the default one by pressing ⌘=.

Set the font size you want it to display in the newly created profile's Text pane.

Now here's the trick. You can't change either the font size or the profile of the terminal sessions using AppleScript (at least I haven't found a way), but you can execute commands in every session using AppleScript, and there's a custom escape sequence in iTerm2 that supports changing profiles for the session it was echo'ed in.

So, you can execute that:

echo -e "\033]50;SetProfile=LargeFont\a"

in every opened session to change the terminal's profile to "LargeText".

Now we can use AppleScript to automate the execution for all opened sessions:

tell application "iTerm"
    repeat with theTerminal in terminals
        tell theTerminal
            repeat with theSession in sessions
                tell theSession
                    write text "echo -e '\\033]50;SetProfile=LargeText\\a'"
                end tell
            end repeat
        end tell
    end repeat
end tell

Please note that it just writes the text (literally) into the each session, so if you have some text editor opened in one of your tabs - it won't work in it, and will paste the echo command in your code/configuration file instead. If you have a ping command running in one of the tabs - it won't work, too.
You should make sure there is no interactive stuff running in any of your shells.

You'll also have these commands left in your shell's history. You could bypass it by adding a space before the command itself (like echo -e ...), this works at least in zsh.

Here's the zsh function:

function iterm_change_profile() {
    osascript -e "
        tell application \"iTerm\"
            repeat with theTerminal in terminals
                tell theTerminal
                    repeat with theSession in sessions
                        tell theSession
                            write text \" echo -e \\\"\\\\033]50;SetProfile=$1\\\\a\\\"\"
                        end tell
                    end repeat
                end tell
            end repeat
        end tell"
}

So you could use it like that:

iterm_change_profile LargeFont

There's also a drawback - when you change the profile from the one with the larger font to the smaller one, the iTerm's window resizes significantly.

But, again, it's a really shitty way.


In the current iTerm2 (version 3.3.7), there's View > Size Changes Update Profile which solves the issue:

To change the font size regardless of profile, see this iTerm2 issue where a script is provided.