]> git.sev.monster Git - dotfiles.git/blob - xdg/compton.conf
fixed .config not being added
[dotfiles.git] / xdg / compton.conf
1 # Shadow
2 shadow = true;
3 no-dnd-shadow = true;
4 no-dock-shadow = true;
5 clear-shadow = true;
6 shadow-radius = 7;
7 shadow-offset-x = -7;
8 shadow-offset-y = -7;
9 shadow-opacity = 1;
10 shadow-exclude = [
11         "_GTK_FRAME_EXTENTS@:c",
12         # fullscreen
13         "x = 0 && y = 0 && override_redirect = true"
14 ];
15 shadow-ignore-shaped = true;
16 xinerama-shadow-crop = true;
17
18 # Opacity
19 menu-opacity = 0.9;
20 inactive-opacity = 0.875;
21 active-opacity = 1;
22 alpha-step = 0.01;
23 inactive-dim = 0.075;
24 blur-background = true;
25 blur-kern = "5,5,0.367879,0.535261,0.606531,0.535261,0.367879,0.535261,0.778801,0.882497,0.778801,0.535261,0.606531,0.882497,0.882497,0.606531,0.535261,0.778801,0.882497,0.778801,0.535261,0.367879,0.535261,0.606531,0.535261,0.367879,"
26
27 # Fading
28 fading = true;
29 fade-delta = 16;
30 fade-in-step = 0.05;
31 fade-out-step = 0.05;
32
33 # Rendering
34 backend = "glx"
35 glx-no-stencil = true;
36 glx-no-rebind-pixmap = true;
37 paint-on-overlay = true;
38 refresh-rate = 0;
39 vsync = "opengl-swc";
40
41 # Other
42 mark-wmwin-focused = true;
43 mark-ovredir-focused = true;
44 use-ewmh-active-win = true;
45 detect-rounded-corners = true;
46 detect-client-opacity = true;
47 detect-transient = true;
48 detect-client-leader = true;
49
50 # Window type settings
51 wintypes:
52 {
53         tooltip = { fade = true; shadow = true; opacity = 0.9; focus = true; };
54 };
This page took 0.037108 seconds and 4 git commands to generate.