How to change Terminal Title in ubuntu 16.04

A lot of programs will overwrite the title so you can't rely on the title being fixed or not duplicated by other windows. This is especially so with remote ssh sessions in a gnome-terminal. It still helps a lot but its not reliable enough for window managers to do matching against (which is why I think they removed it. (addition by Amias Channer)) so this ability has been taken out with the newest gnome-terminal, however there is still a possibility to change the title, you can do it by command. To achieve this easily edit your ~/.bashrc file and add the following lines:

# function to set terminal title
function set-title(){
  if [[ -z "$ORIG" ]]; then
    ORIG="$PS1"
  fi
  TITLE="\[\e]2;$*\a\]"
  PS1="${ORIG}${TITLE}"
}

With this you then can set the title of your terminal window by simply using the command set-title <name you want to set it to>. This is possible due to ANSI escape codes so any program can output them regardless of where the code is run. That's what the \e and \a bits do. (addition by Amias Channer).

The solution I found here and using it myself since I run on 16.04 LTS.


Videonauth's solution is bash-specific, meaning that if you use some other shell (such as korn shell or c shell or mksh or tcsh), it won't work. It also sets title via editing the PS1 prompt ( which for some reason has effect on the title in bash). Here's for example gnome-terminal with mksh:

enter image description here

What I personally use is this:

setTitle() {
    echo -e "\033]0;$@\007" 
}

This command uses escape sequences and is shell-agnostic , meaning this works in shells other than bash. Small downside is that you will need to know ASCII escape sequences if you want to tweak this.