diff options
author | listout <listout@protonmail.com> | 2021-12-22 23:41:46 +0530 |
---|---|---|
committer | listout <listout@protonmail.com> | 2021-12-22 23:41:46 +0530 |
commit | 4fcbbaea798de7e5c5bb41825ba3dc2e25e04020 (patch) | |
tree | ec0f0de45d74410955f07c31a1dd07e549a3c5ad /.config/picom | |
parent | ea954d83f85b9c0ffca8cfee08fc389049e9b0d5 (diff) |
shadow exclude for tiling window
Diffstat (limited to '.config/picom')
-rw-r--r-- | .config/picom/picom.conf | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/.config/picom/picom.conf b/.config/picom/picom.conf index 541b873..6220bbf 100644 --- a/.config/picom/picom.conf +++ b/.config/picom/picom.conf @@ -8,14 +8,14 @@ # unless explicitly requested using the wintypes option. # # shadow = false -shadow = false; +shadow = true; # The blur radius for shadows, in pixels. (defaults to 12) # shadow-radius = 12 -shadow-radius = 3; +shadow-radius = 12; # The opacity of shadows. (0.0 - 1.0, defaults to 0.75) -# shadow-opacity = .75 +shadow-opacity = .75 # The left offset for shadows, in pixels. (defaults to -15) # shadow-offset-x = -15 @@ -49,7 +49,8 @@ shadow-exclude = [ "class_g ?= 'Notify-osd'", "class_g = 'Cairo-clock'", "_GTK_FRAME_EXTENTS@:c", - "class_g = 'firefox' && argb" + "class_g = 'firefox' && argb", + "!_COMPTON_SHADOW@:32c = 1" ]; # Specify a X geometry that describes the region in which shadow should not |