2

Compton can draw shadows under windows, which is nice, but unfortunately it draws shadows under the Gnome-Do window, which ends up like this:

Screenshot

Is it possible to keep that from happening?

Hubro
  • 1,293

1 Answers1

3
  • Add it to shadow-exclude array:

    # Shadow
    ...
    shadow-exclude = [ "class_g = 'Do'" ];
    

    in

    /home/<user>/.config/compton.conf
    
  • Or specify it with compton launch command. Example:

    compton -c --shadow-exclude 'class_g = "Do"'
    

Reference: man compton

Hubro
  • 1,293
user.dz
  • 49,176