0

I'm using Awesome WM v.3.4.15. I've searched all around and only found the suggestion to add two hex digits to the hex color value of the background color of the selected window in theme.lua but after doing that and reloading it only makes it grey.

Does know what I can do to make the background color of the selected window in the top bar transparent?

  • Could you please add some images of the problem and desired solution as well as the parts of theme.lua that you modified in your attempts. – ryanpattison Aug 11 '15 at 13:49

2 Answers2

1

Awesome/Lua uses RGBA color space, so indeed to make color transparent you need to add two digits after color.

The parameter you need to change is theme.bg_focus if I understood you correctly, to test it set it to white first "#ffffff" and then change the transparency: "#ffffff00". If it's not that try theme.titlebar_bg_focus or theme.tasklist_bd_focus

streetturtle
  • 5,472
  • 2
  • 25
  • 43
1

The two hex digits are the strength of the transparency.

00 - full transparency
FF - no transparency

So you have to set your value to #ffffff00.

Florian Rusch
  • 345
  • 2
  • 9