I am working now on some really exiting project and I am using about six terminals at the same time. Normally I use Ubuntu's default terminal which is currently the GNOME Terminal 3.20.2
Sometimes I get confused between my opened terminals, because their content is looking so similar.
So I ask is there a way to add a title or some coloring to the Terminal window?
gnome-terminal --title="SOME TITLE HERE"
. But the--title
option seems to be deprecated. – eDeviser Nov 06 '17 at 09:20echo -ne "\033]0;SOME TITLE HERE\007"
to change the title in a running terminal window, or withwmctrl
for the currently active window:wmctrl -r :ACTIVE: -N "MyWindowTitle"
. – dessert Nov 06 '17 at 09:46echo
+control code method should still work – muru Nov 06 '17 at 09:47