move scripts from ~/.local/bin to rc.org
[~bandali/configs] / .config / compton / compton.conf
CommitLineData
9353204b
AB
1# Shadow
2shadow = true;
2fdc00ae
AB
3shadow-radius = 5;
4shadow-offset-x = -5;
5shadow-offset-y = -5;
9353204b
AB
6log-level = "warn";
7# log-file = "/path/to/your/log/file";
8# shadow-opacity = 0.7;
9# shadow-red = 0.0;
10# shadow-green = 0.0;
11# shadow-blue = 0.0;
12shadow-exclude = [
13 "name = 'Notification'",
14 "class_g = 'Conky'",
2fdc00ae 15 "class_g = 'Abrowser' && !window_type *= 'menu'",
9353204b
AB
16 "class_g ?= 'Notify-osd'",
17 "class_g = 'Cairo-clock'",
18 "_GTK_FRAME_EXTENTS@:c"
19];
20# shadow-exclude = "n:e:Notification";
21# shadow-exclude-reg = "x10+0+0";
22# xinerama-shadow-crop = true;
23
24# Opacity
25inactive-opacity = 0.8;
26# active-opacity = 0.8;
27frame-opacity = 0.7;
28inactive-opacity-override = false;
29# inactive-dim = 0.2;
30# inactive-dim-fixed = true;
31# blur-background = true;
32# blur-background-frame = true;
33blur-kern = "3x3box";
34# blur-kern = "5,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1";
35# blur-background-fixed = true;
36blur-background-exclude = [
37 "window_type = 'dock'",
38 "window_type = 'desktop'",
39 "_GTK_FRAME_EXTENTS@:c"
40];
41# opacity-rule = [ "80:class_g = 'URxvt'" ];
42
43# Fading
44fading = true;
c1803844
AB
45fade-delta = 9;
46fade-in-step = 0.5;
47fade-out-step = 0.5;
9353204b
AB
48# no-fading-openclose = true;
49# no-fading-destroyed-argb = true;
50fade-exclude = [ ];
51
52# Other
325749b2 53backend = "glx";
9353204b
AB
54mark-wmwin-focused = true;
55mark-ovredir-focused = true;
56# use-ewmh-active-win = true;
57detect-rounded-corners = true;
58detect-client-opacity = true;
59refresh-rate = 0;
60vsync = true;
61# sw-opti = true;
62# unredir-if-possible = true;
63# unredir-if-possible-delay = 5000;
64# unredir-if-possible-exclude = [ ];
65focus-exclude = [ "class_g = 'Cairo-clock'" ];
66detect-transient = true;
67detect-client-leader = true;
68invert-color-include = [ ];
69# resize-damage = 1;
70
71# GLX backend
72# glx-no-stencil = true;
73# glx-no-rebind-pixmap = true;
74# xrender-sync-fence = true;
c942efc6 75use-damage = false;
9353204b
AB
76
77# Window type settings
78wintypes:
79{
2fdc00ae 80 tooltip = { fade = true; shadow = false; opacity = 0.95; focus = true; full-shadow = false; };
9353204b
AB
81 dock = { shadow = false; }
82 dnd = { shadow = false; }
83 popup_menu = { opacity = 0.8; }
84 dropdown_menu = { opacity = 0.8; }
85};