LXDE – Make Active Window in LXPanel Distinguishable

lxdeopenbox

In LXDE, the task bar shows tabs for all currently running applications/windows, as shown on the screenshot below:

enter image description here

The problem is, I have hard time distinguishing which window is the one I am in right now (active window)

All tabs look the same to me. Is there any way to configure active window to have another color ?

Best Answer

I had similar issue in LXDE. After some investigation, I found out that this setting comes from gtk theme.

Go to your gtk theme, ie

/usr/share/themes/<your_theme_name>/gtk-2.0/gtkrc

And find the "button" section. Add the following bg[ACTIVE] line:

style "button" {
....
bg[ACTIVE]        = shade (0.55, "#804c44")
...
}

adjust the color code #804c44 as appropriate.

Related Question