I am using ubuntu 14.04. I have to open multiple terminal tabs while working. As I open more and more terminal tabs, It is becomes very difficult to identify the current working tab. I like to know how to change the color (say red title bar) for the active terminal tab
Asked
Active
Viewed 1,347 times
4
-
The answer is here Also see Gnome-terminal tabs: no contrast between active and inactive tabs – Anusha Prasanth Dec 06 '17 at 08:33
1 Answers
5
What about this way?
Pick a color in http://www.color-hex.com/
Create a file
vi .config/gtk-3.0/gtk.css
Change the content of this like following
TerminalWindow .notebook tab:active { background-color: #ffce00; // what you want(or pick) }

sjlee
- 61