Picom Context Menu Transparency
I love the transparent terminal on my linux machine, and Picom does the work perfectly, but, the downside is that by default Picom makes context menus transparents as well, and I personally doesn't like, so, if you are as me and you are wondering why my menus are transparent and how fix it,
first you should copy the defaults of Picom to your home folder with:
cp -r /etc/xdg/picom.conf ~/.config/picom/picom.conf
Edit the picom.conf
and goes to the end of the file, you should see:
wintypes:
{
tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; full-shadow = false; };
dock = { shadow = false; clip-shadow-above = true; }
dnd = { shadow = false; }
popup_menu = { opacity = 0.8; }
dropdown_menu = { opacity = 0.8; }
};
You should change to 1
the opacity values for popup_menu
and dropdown_menu
and thats it, 🎉
Comments ()