diff options
Diffstat (limited to 'compton')
-rw-r--r-- | compton/.config/compton.conf | 90 |
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 | ||
2 | shadow = false; | ||
3 | no-dnd-shadow = true; | ||
4 | shadow-dock = true; | ||
5 | clear-shadow = true; | ||
6 | shadow-radius = 60; | ||
7 | shadow-offset-x = -60; | ||
8 | shadow-offset-y = -60; | ||
9 | shadow-opacity = 0.20; | ||
10 | corner-radius = 0; | ||
11 | # shadow-red = 0.0; | ||
12 | # shadow-green = 0.0; | ||
13 | # shadow-blue = 0.0; | ||
14 | shadow-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 | ||
26 | menu-opacity = 1; | ||
27 | inactive-opacity = 1; | ||
28 | active-opacity = 1; | ||
29 | frame-opacity = 1; | ||
30 | inactive-opacity-override = false; | ||
31 | alpha-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"; | ||
36 | blur-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 | ||
47 | fading = true; | ||
48 | #fade-delta = 10; | ||
49 | fade-in-step = 0.04; | ||
50 | fade-out-step = 0.04; | ||
51 | # no-fading-openclose = true; | ||
52 | # no-fading-destroyed-argb = true; | ||
53 | fade-exclude = [ ]; | ||
54 | |||
55 | # Other | ||
56 | backend = "xrender"; | ||
57 | mark-wmwin-focused = true; | ||
58 | mark-ovredir-focused = true; | ||
59 | # use-ewmh-active-win = true; | ||
60 | detect-rounded-corners = true; | ||
61 | detect-client-opacity = true; | ||
62 | refresh-rate = 0; | ||
63 | vsync = "none"; | ||
64 | dbe = false; | ||
65 | paint-on-overlay = true; | ||
66 | # sw-opti = true; | ||
67 | # unredir-if-possible = true; | ||
68 | # unredir-if-possible-delay = 5000; | ||
69 | # unredir-if-possible-exclude = [ ]; | ||
70 | focus-exclude = [ "class_g = 'Cairo-clock'" ]; | ||
71 | detect-transient = true; | ||
72 | detect-client-leader = true; | ||
73 | invert-color-include = [ ]; | ||
74 | # resize-damage = 1; | ||
75 | |||
76 | # GLX backend | ||
77 | # glx-no-stencil = true; | ||
78 | glx-copy-from-front = false; | ||
79 | # glx-use-copysubbuffermesa = true; | ||
80 | # glx-no-rebind-pixmap = true; | ||
81 | glx-swap-method = "undefined"; | ||
82 | # glx-use-gpushader4 = true; | ||
83 | # xrender-sync = true; | ||
84 | # xrender-sync-fence = true; | ||
85 | |||
86 | # Window type settings | ||
87 | wintypes: | ||
88 | { | ||
89 | tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; }; | ||
90 | }; | ||