aboutsummaryrefslogtreecommitdiff
path: root/compton/.config/compton.conf
diff options
context:
space:
mode:
Diffstat (limited to 'compton/.config/compton.conf')
-rw-r--r--compton/.config/compton.conf90
1 files changed, 90 insertions, 0 deletions
diff --git a/compton/.config/compton.conf b/compton/.config/compton.conf
new file mode 100644
index 0000000..764d287
--- /dev/null
+++ b/compton/.config/compton.conf
@@ -0,0 +1,90 @@
1# Shadow
2shadow = false;
3no-dnd-shadow = true;
4shadow-dock = true;
5clear-shadow = true;
6shadow-radius = 60;
7shadow-offset-x = -60;
8shadow-offset-y = -60;
9shadow-opacity = 0.20;
10corner-radius = 0;
11# shadow-red = 0.0;
12# shadow-green = 0.0;
13# shadow-blue = 0.0;
14shadow-exclude = [
15 "name = 'Notification'",
16 "class_g = 'Conky'",
17 "class_g ?= 'Notify-osd'",
18 "class_g = 'Cairo-clock'",
19 "_GTK_FRAME_EXTENTS@:c"
20];
21# shadow-exclude = "n:e:Notification";
22# shadow-exclude-reg = "x10+0+0";
23# xinerama-shadow-crop = true;
24
25# Opacity
26menu-opacity = 1;
27inactive-opacity = 1;
28active-opacity = 1;
29frame-opacity = 1;
30inactive-opacity-override = false;
31alpha-step = 0.00;
32# inactive-dim-fixed = true;
33#blur-background = true;
34#blur-kern = "7x7box";
35# 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";
36blur-background-exclude = [
37 "name = 'panel_overlay'",
38 "window_type = 'window'",
39 "window_type = 'dock'",
40 "window_type = 'desktop'",
41# "window_type = 'bar'",
42 "_GTK_FRAME_EXTENTS@:c"
43];
44# opacity-rule = [ "80:class_g = 'URxvt'" ];
45
46# Fading
47fading = true;
48#fade-delta = 10;
49fade-in-step = 0.04;
50fade-out-step = 0.04;
51# no-fading-openclose = true;
52# no-fading-destroyed-argb = true;
53fade-exclude = [ ];
54
55# Other
56backend = "xrender";
57mark-wmwin-focused = true;
58mark-ovredir-focused = true;
59# use-ewmh-active-win = true;
60detect-rounded-corners = true;
61detect-client-opacity = true;
62refresh-rate = 0;
63vsync = "none";
64dbe = false;
65paint-on-overlay = true;
66# sw-opti = true;
67# unredir-if-possible = true;
68# unredir-if-possible-delay = 5000;
69# unredir-if-possible-exclude = [ ];
70focus-exclude = [ "class_g = 'Cairo-clock'" ];
71detect-transient = true;
72detect-client-leader = true;
73invert-color-include = [ ];
74# resize-damage = 1;
75
76# GLX backend
77# glx-no-stencil = true;
78glx-copy-from-front = false;
79# glx-use-copysubbuffermesa = true;
80# glx-no-rebind-pixmap = true;
81glx-swap-method = "undefined";
82# glx-use-gpushader4 = true;
83# xrender-sync = true;
84# xrender-sync-fence = true;
85
86# Window type settings
87wintypes:
88{
89 tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; };
90};