Altere o tema do Terminal.app ao fazer sshing

Com este pequeno trecho dentro de seu .zshrcTerminal, você mudará para outro tema ao fazer o sshing (e voltará automaticamente após sair).

# Change theme of Terminal.app
tabc
() {
NAME
="${1:-Default}"
osascript
-e "tell application "Terminal"" to set current settings of front window to settings set ""$NAME""""
}

# Change to Danger theme when executing ssh
ssh
() {
tabc
Danger
/usr/bin/ssh ""$*""
tabc

}