mirror of
https://github.com/vincentbernat/i3wm-configuration.git
synced 2025-06-21 01:25:42 +02:00
picom: avoid painting shadow over dock or mpv window
This commit is contained in:
parent
6ff1ce2640
commit
73c883b942
1 changed files with 4 additions and 1 deletions
|
@ -40,7 +40,7 @@ shadow-exclude-reg = "x@POLYBAR_HEIGHT@+0+0"
|
||||||
wintypes:
|
wintypes:
|
||||||
{
|
{
|
||||||
normal = { shadow = true; };
|
normal = { shadow = true; };
|
||||||
dock = { shadow = true; };
|
dock = { shadow = true; clip-shadow-above = true; };
|
||||||
combo = { fade = true; };
|
combo = { fade = true; };
|
||||||
dropdown_menu = { fade = true; };
|
dropdown_menu = { fade = true; };
|
||||||
menu = { fade = true; };
|
menu = { fade = true; };
|
||||||
|
@ -66,6 +66,9 @@ shadow-exclude = [
|
||||||
"name = 'Firefox — Sharing Indicator'", # Firefox
|
"name = 'Firefox — Sharing Indicator'", # Firefox
|
||||||
"name = 'Screen Sharing Tracker'" # Jitsi
|
"name = 'Screen Sharing Tracker'" # Jitsi
|
||||||
];
|
];
|
||||||
|
clip-shadow-above = [
|
||||||
|
"class_g = 'mpv'"
|
||||||
|
];
|
||||||
fade-exclude = [ ];
|
fade-exclude = [ ];
|
||||||
|
|
||||||
corner-radius = @CORNER_RADIUS@
|
corner-radius = @CORNER_RADIUS@
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue