M BUZZ CRAZE NEWS
// news

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 compton

and in the rc.lua file add

{ rule = { class = "x-terminal-emulator" }, properties = { opacity = 0.75 } },

into the

awful.rules.rules

variable

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).

3

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy