Please see another post of mine about terminal colors if this post is a little confusing.
Add the following to your .kshrc or .bashrc files.
# KSH terminal headers add to .profile PS1=`uname -n`” $ ” alias cd=_cd function _cd { \cd ${1+”$@”} && echo “\033]0;${USER}@${HOST}: ${PWD}\007\c” }
# BASH terminal headers add to .bashrc [...]
