mirror of
https://github.com/vincentbernat/i3wm-configuration.git
synced 2025-06-26 03:38:33 +02:00
picom: exclude utility windows from opacity
That's what Firefox is using for some menus.
This commit is contained in:
parent
f3a0a870b1
commit
5426dcefdc
1 changed files with 3 additions and 0 deletions
|
@ -4,6 +4,8 @@ mark-ovredir-focused = true;
|
||||||
use-ewmh-active-win = true;
|
use-ewmh-active-win = true;
|
||||||
|
|
||||||
# Opacity rules (first rule match)
|
# Opacity rules (first rule match)
|
||||||
|
# Cannot use override-redirect:
|
||||||
|
# https://github.com/yshui/picom/issues/625
|
||||||
opacity-rule = [
|
opacity-rule = [
|
||||||
"100:fullscreen",
|
"100:fullscreen",
|
||||||
"100:name = 'Zoom Meeting'",
|
"100:name = 'Zoom Meeting'",
|
||||||
|
@ -11,6 +13,7 @@ opacity-rule = [
|
||||||
"100:window_type = 'popup_menu'",
|
"100:window_type = 'popup_menu'",
|
||||||
"100:window_type = 'dropdown_menu'",
|
"100:window_type = 'dropdown_menu'",
|
||||||
"100:window_type = 'menu'",
|
"100:window_type = 'menu'",
|
||||||
|
"100:window_type = 'utility'",
|
||||||
"100:window_type = 'dock'",
|
"100:window_type = 'dock'",
|
||||||
"85:!focused"
|
"85:!focused"
|
||||||
];
|
];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue