diff options
author | David Runge <dave@sleepmap.de> | 2015-02-17 17:34:16 +0100 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2015-02-17 17:34:16 +0100 |
commit | a27c0d35fa23ef4cb8b742a50e2b2289e4067f9f (patch) | |
tree | b3cd8797f164331d58737e03b1d6d0dbb3c16435 | |
parent | 5b334514d75956be0642a99dfe3de272049a1648 (diff) | |
download | dotfiles-a27c0d35fa23ef4cb8b742a50e2b2289e4067f9f.tar.gz dotfiles-a27c0d35fa23ef4cb8b742a50e2b2289e4067f9f.tar.bz2 dotfiles-a27c0d35fa23ef4cb8b742a50e2b2289e4067f9f.tar.xz dotfiles-a27c0d35fa23ef4cb8b742a50e2b2289e4067f9f.zip |
compton.conf: Added shadow-exclude for GTK+3 applications (to not draw double shadow).
-rw-r--r-- | .config/compton.conf | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.config/compton.conf b/.config/compton.conf index e49a70a..dc15cc4 100644 --- a/.config/compton.conf +++ b/.config/compton.conf @@ -13,7 +13,9 @@ shadow-offset-y = -7; # The top offset for shadows. (default -15) # shadow-blue = 0.0; # Blue color value of shadow. (0.0 - 1.0, defaults to 0) shadow-exclude = [ "n:e:Notification", + "class_g = 'conky'", "_GTK_FRAME_EXTENTS@:c", + "_NET_WM_OPAQUE_REGION@:c" ]; # Exclude conditions for shadows. # shadow-exclude = "n:e:Notification"; |