compton/compton.conf
1	# Shadow
2 shadow = true; # Enabled client-side shadows on windows.
3 no-dock-shadow = true; # Avoid drawing shadows on dock/panel windows.
4 no-dnd-shadow = true; # Don't draw shadows on DND windows.
5 clear-shadow = true; # Zero the part of the shadow's mask behind the window (experimental).
6 shadow-radius = 7; # The blur radius for shadows. (default 12)
7 shadow-offset-x = -10; # The left offset for shadows. (default -15)
8 shadow-offset-y = -10; # The top offset for shadows. (default -15)
9 shadow-exclude = [ "n:e:Notification", "g:e:Synapse", "g:e:Conky", "n:w:*Firefox*", "n:w:*Chromium*", "class_g ?= 'Xfce4-notifyd'", "class_g ?= 'Xfce4-power-manager'"];
10 #opacity-exclude = [ "class_g ?= 'Firefox'", "class_g ?= 'Chromium'", ];
11
12 menu-opacity = 1.0;
13 inactive-opacity = 0.85;
14 inactive-opacity-override = true;
15
16 mark-wmwin-focused = true; # Try to detect WM windows and mark them as active.
17 mark-ovredir-focused = true;
18 detect-rounded-corners = true;
19
20 #blur-background = true;
21 #blur-background-frame = true;
22 #blur-kern = "3x3box";
23
24 # Fading
25 fading = true; # Fade windows during opacity changes.
26 #fade-delta = 5; # The time between steps in a fade in milliseconds. (default 10).
27 fade-in-step = 0.1; # Opacity change between steps while fading in. (default 0.028).
28 fade-out-step = 0.1; # Opacity change between steps while fading out. (default 0.03).
29 #no-fading-openclose = true; # Fade windows in/out when opening/closing
30
31 #detect-rounded-corners = true;
32
33 # Window type settings
34 opacity-rule = [
35 "0:_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'"
36 ];
37 wintypes:
38 {
39 tooltip = { fade = true; shadow = false; };
40 };