Date:
2013-08-28
Status:
idea
Tags:
Bash
OSX
http://thelucid.com/2012/01/04/naming-your-terminal-tabs-in-osx-lion/
Consider adding this function to your .bash_profile
function tabname {
printf "\e]1;$1\a"
}
Now you can easily name your tabs or windows with the following:
# Rename the tab
tabname "whatever you want"