]> git.sev.monster Git - dotfiles.git/blob - xdg/compton.conf
updated repeat.vim
[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         # gtk3 fix
12         "_GTK_FRAME_EXTENTS@:c",
13         # i3 tabbed windows
14         "_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'",
15         # i3 titlebar
16         "class_g = 'i3-frame'",
17         # fullscreen/dmenu
18         "x = 0 && y = 0 && override_redirect = true",
19         # bg terminals
20         "class_i = 'TermBg1'",
21         "class_i = 'TermBg2'"
22 ];
23 shadow-ignore-shaped = true;
24
25 # Opacity
26 menu-opacity = 0.9;
27 inactive-opacity = 0.875;
28 active-opacity = 1;
29 alpha-step = 0.01;
30 inactive-dim = 0.075;
31 blur-background = true;
32 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,"
33 opacity-rule = [
34         # i3 tabbed windows
35         "0:_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'"
36 ];
37 blur-background-exclude = [
38         # gtk3 fix
39         "_GTK_FRAME_EXTENTS@:c",
40         # i3 titlebar
41         "class_g = 'i3-frame'",
42         # ignore docks
43         "window_type = 'dock'",
44         "window_type = 'desktop'"
45 ];
46
47 # Fading
48 fading = true;
49 fade-delta = 16;
50 fade-in-step = 0.05;
51 fade-out-step = 0.05;
52
53 # Rendering
54 backend = "glx"
55 glx-no-stencil = true;
56 glx-no-rebind-pixmap = true;
57 paint-on-overlay = true;
58 refresh-rate = 0;
59 vsync = "opengl-swc";
60
61 # Other
62 mark-wmwin-focused = true;
63 mark-ovredir-focused = true;
64 use-ewmh-active-win = true;
65 detect-rounded-corners = true;
66 detect-client-opacity = true;
67 detect-transient = true;
68 detect-client-leader = true;
69
70 # Window type settings
71 wintypes:
72 {
73         tooltip = { fade = true; shadow = true; opacity = 0.9; focus = true; };
74 };
This page took 0.037965 seconds and 4 git commands to generate.