Transparency for gnome-terminal not working in awesome wm
By Daniel Rodriguez •
I am new to awesome wm, when I change the transparency of the terminal from the preferences it turns black instead of becoming transparent I have no idea how to fix it. Not sure what code I should post here to help with the debugging, let me know if any data is required.
2 Answers
So i figured out a way to get it working.
sudo apt-get install comptonand in the rc.lua file add
{ rule = { class = "x-terminal-emulator" }, properties = { opacity = 0.75 } },into the
awful.rules.rulesvariable
and at the bottom of the rc.lua file add:
awful.util.spawn("compton") Awesome WM doesn't have its own compositor which is required to handle transparency, shadows etc. You need to install a standalone compositor (e.g. compton for xorg).