I want to rename my current terminal tab - window title. Please help me how to do it either using CUI or GUI.
Asked
Active
Viewed 5,351 times
3
1 Answers
2
This is a long standing bug that appears to have been 1st reported around 2016.
A currently viable workaround is to install mate-terminal which still has the ability to set the title of the terminal screen as reported by Erik B. Andersen in this bug report comment.
I have tested this workaround under Ubuntu 16.04 as well as 18.04 and can testify that it does indeed work as advertised.
The downside is that it requires the installation of other Mate related supporting packages.

Elder Geek
- 36,023
- 25
- 98
- 183
echo -ne "\033]0;SOME TITLE HERE\007"
will set your title and your tab to "SOME TITLE HERE". Might depend on the terminal you use. This worked for me with Gnome Terminal & Terminator. – Patient32Bit Jan 16 '19 at 07:02