Advertisement
Guest User

Untitled

a guest
Dec 6th, 2013
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.26 KB | None | 0 0
  1. case $TERM in
  2.     xterm*|*rxvt*)
  3.         TITLEBAR='\[\e]0; Terminal | \w\007\]'
  4.         ;;
  5.     *)
  6.         TITLEBAR=""
  7.         ;;
  8. esac
  9.  
  10. # Put it all together
  11. PS1="${TITLEBAR}${STARTCOLOUR}${PS1}${ENDCOLOR}"
  12.  
  13. trap 'echo -ne "\033]0;$BASH_COMMAND\007"' DEBUG
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement