vincentbernat.i3wm-configur.../dotfiles/picom.conf
Vincent Bernat 5426dcefdc picom: exclude utility windows from opacity
That's what Firefox is using for some menus.
2021-07-11 08:51:28 +02:00

19 lines
514 B
Text

backend = "xr_glx_hybrid";
vsync = true;
mark-ovredir-focused = true;
use-ewmh-active-win = true;
# Opacity rules (first rule match)
# Cannot use override-redirect:
# https://github.com/yshui/picom/issues/625
opacity-rule = [
"100:fullscreen",
"100:name = 'Zoom Meeting'",
"100:name = 'zoom_linux_float_video_window'",
"100:window_type = 'popup_menu'",
"100:window_type = 'dropdown_menu'",
"100:window_type = 'menu'",
"100:window_type = 'utility'",
"100:window_type = 'dock'",
"85:!focused"
];