Created
November 15, 2012 17:50
-
-
Save rschenk/4080065 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Change Terminal Themes | |
function tabc { | |
NAME=$1; if [ -z "$NAME" ]; then NAME="Default"; fi | |
osascript -e "tell application \"Terminal\" to set current settings of front window to settings set \"$NAME\"" > /dev/null 2>&1 | |
} | |
# Change Terminal Themes When you SSH | |
function ssh { | |
tabc "IR_Black_Remote" | |
/usr/bin/ssh "$@" | |
tabc "IR_Black" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment