How to make i3wm statusbar transparent?
How to make i3wm statusbar background transparent? I haven't found a way when trying to write the colour number in various ways.
How to make i3wm statusbar background transparent? I haven't found a way when trying to write the colour number in various ways.
i3bar itself doesn't support transparency. A compositor can be used to make it transparent, but this will affect the entire bar, including text etc. – making only the background transparent isn't possible this way.
However, using i3-gaps you can use RGBA colors for all colors in i3bar and use transparency that way. See the README on Github for details on how to enable it (and caveats).
You can make i3-bar not to mention tab bars transparent with compton if you like see
https://gist.github.com/michaelmrose/...
You can now even make windows on hidden tab pages transparent so they don't show through behind the current window
for id in `xwininfo -all -root | grep 'i3bar for output' | sed 's#\s\+# #g' | cut -d " " -f2`; do transset -i $id > /dev/null; done
That's not what I mean. You can only set the overall i3bar transparency. If you want the background to be completely transparent, text to be 50% transparent and workspace icons to be 25% transparent, you're hitting a wall. In the compositor you cannot reference individual elements.
Asked: 2015-08-29 00:02:55 +0000
Seen: 696 times
Last updated: Oct 11
I don't think this is possible. By the way, what behind the status bar do you hope to see? I think the background is the only possibility.