]> git.sev.monster Git - dotfiles.git/blame_incremental - xdg/compton.conf
update git email and name
[dotfiles.git] / xdg / compton.conf
... / ...
CommitLineData
1# Shadow
2shadow = true;
3no-dnd-shadow = true;
4no-dock-shadow = true;
5clear-shadow = true;
6shadow-radius = 8;
7shadow-offset-x = -12;
8shadow-offset-y = -12;
9shadow-opacity = 0.3;
10shadow-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];
23shadow-ignore-shaped = true;
24
25# Opacity
26menu-opacity = 0.9;
27inactive-opacity = 0.875;
28active-opacity = 1;
29alpha-step = 0.01;
30inactive-dim = 0.075;
31# XXX: crashes on alpine???
32#blur-background = true;
33blur-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,"
34opacity-rule = [
35 # i3 tabbed windows
36 "0:_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'"
37];
38blur-background-exclude = [
39 # gtk3 fix
40 "_GTK_FRAME_EXTENTS@:c",
41 # i3 titlebar
42 "class_g = 'i3-frame'",
43 # ignore docks
44 "window_type = 'dock'",
45 "window_type = 'desktop'"
46];
47
48# Fading
49fading = true;
50fade-delta = 16;
51fade-in-step = 0.05;
52fade-out-step = 0.05;
53
54# Rendering
55backend = "glx"
56glx-no-stencil = true;
57glx-no-rebind-pixmap = true;
58paint-on-overlay = true;
59refresh-rate = 0;
60vsync = "opengl-swc";
61
62# Other
63mark-wmwin-focused = true;
64mark-ovredir-focused = true;
65use-ewmh-active-win = true;
66detect-rounded-corners = true;
67detect-client-opacity = true;
68detect-transient = true;
69detect-client-leader = true;
70
71# Window type settings
72wintypes:
73{
74 tooltip = { fade = true; shadow = true; opacity = 0.9; focus = true; };
75};
This page took 0.043742 seconds and 4 git commands to generate.