mirror of
https://github.com/vincentbernat/i3wm-configuration.git
synced 2025-08-04 18:24:38 +02:00
28 lines
640 B
Text
28 lines
640 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"
|
|
];
|
|
|
|
# Shadows
|
|
wintypes:
|
|
{
|
|
notification = { shadow = true; };
|
|
splash = { shadow = true; };
|
|
dialog = { shadow = true; };
|
|
};
|
|
|