-
Hi! I started experiencing the following picom shadow glitch after a recent Chrome update. Some menus (the three-dot, the right-click) have ugly transparent frames with shadows: Interestingly, some menus are fine: @kgilmer I remember we removed some shadow exceptions for Chrome in the picom config a while back, because they didn't seem necessary. Maybe it's time to bring them back? 😬 Anybody else experiencing the same issue? |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 11 replies
-
what shadow exceptions were those? |
Beta Was this translation helpful? Give feedback.
-
can confirm the same issue: |
Beta Was this translation helpful? Give feedback.
-
For others that hit this discussion from a search engine, adding a compositor (e.g. picom) may fix this. I'm seeing the same issue in NixOS / i3 window manager (with no compositor). Reddit thread with the same problem described: https://www.reddit.com/r/linuxquestions/comments/17sq1hv/how_to_disable_chrome_context_menu_border/ Quote from a comment in that thread with a solution for Debian:
For NixOS, some options may be: https://rycee.gitlab.io/home-manager/options.html#opt-services.picom.enable Edit: I can confirm that using |
Beta Was this translation helpful? Give feedback.
-
在 wintypes:
{
tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; full-shadow = false; };
dock = { shadow = false; clip-shadow-above = true; }
dnd = { shadow = false; }
menu = { shadow = false; }
popup_menu = { opacity = 0.8; }
dropdown_menu = { opacity = 0.8; }
}; |
Beta Was this translation helpful? Give feedback.
-
This is working in picom vgit-b700a:
|
Beta Was this translation helpful? Give feedback.
在
/etc/xdg/picom.conf
中设置menu = { shadow = false; }
可以解决