Skip to content

Instantly share code, notes, and snippets.

@gyula-ny
Created November 22, 2020 08:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gyula-ny/0cde6dbf96804cb878b6314633383e25 to your computer and use it in GitHub Desktop.
Save gyula-ny/0cde6dbf96804cb878b6314633383e25 to your computer and use it in GitHub Desktop.
Change the window title of X terminals
case ${TERM} in
[aEkx]term*|rxvt*|gnome*|konsole*|interix)
PS1='\[\033]0;\u@\h:\w\007\]'
;;
screen*)
PS1='\[\033k\u@\h:\w\033\\\]'
;;
*)
unset PS1
;;
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment