diff options
-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 |