From a27c0d35fa23ef4cb8b742a50e2b2289e4067f9f Mon Sep 17 00:00:00 2001 From: David Runge Date: Tue, 17 Feb 2015 17:34:16 +0100 Subject: compton.conf: Added shadow-exclude for GTK+3 applications (to not draw double shadow). --- .config/compton.conf | 2 ++ 1 file changed, 2 insertions(+) (limited to '.config/compton.conf') 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"; -- cgit v1.2.3-70-g09d2 From cef4675b2d177d0d0a1c24a1154a77ea636f9f59 Mon Sep 17 00:00:00 2001 From: David Runge Date: Wed, 11 Mar 2015 17:07:17 +0100 Subject: .compton.conf: Adding MPlayer to comptons exclude lists. --- .config/compton.conf | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to '.config/compton.conf') diff --git a/.config/compton.conf b/.config/compton.conf index dc15cc4..378058e 100644 --- a/.config/compton.conf +++ b/.config/compton.conf @@ -45,7 +45,8 @@ blur-background-exclude = [ "window_type = 'desktop'", "name *= 'VLC'", "name *= 'Firefox'", - "name *= 'Vimperator'" + "name *= 'Vimperator'", + "name *= 'MPlayer'" ]; # Exclude conditions for background blur. @@ -58,7 +59,8 @@ fade-out-step = 0.03; # Opacity change between steps while fading out. (defaul fade-exclude = [ "name *= 'VLC'", "name *= 'Firefox'", - "name *= 'Vimperator'" + "name *= 'Vimperator'", + "name *= 'MPlayer'" ]; # Exclude conditions for fading. # Other @@ -85,7 +87,8 @@ unredir-if-possible = false; # Unredirect all windows if a full-screen opaque w focus-exclude = [ "name *= 'VLC'", "name *= 'Firefox'", - "name *= 'Vimperator'" + "name *= 'Vimperator'", + "name *= 'MPlayer'" ]; # A list of conditions of windows that should always be considered # focused. detect-transient = true; # Use WM_TRANSIENT_FOR to group windows, and consider windows in -- cgit v1.2.3-70-g09d2