]> git.sev.monster Git - dotfiles.git/blame - xdg/compton.conf
gitconfig: ff only
[dotfiles.git] / xdg / compton.conf
CommitLineData
d9362f34 1# Shadow
2shadow = true;
3no-dnd-shadow = true;
4no-dock-shadow = true;
5clear-shadow = true;
a568f7fa 6shadow-radius = 8;
7shadow-offset-x = -12;
8shadow-offset-y = -12;
9shadow-opacity = 0.3;
d9362f34 10shadow-exclude = [
9fddba79 11 # gtk3 fix
d9362f34 12 "_GTK_FRAME_EXTENTS@:c",
9fddba79 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",
6aa38e2c 19 # bg terminals
20 "class_i = 'TermBg1'",
21 "class_i = 'TermBg2'"
d9362f34 22];
23shadow-ignore-shaped = true;
d9362f34 24
25# Opacity
26menu-opacity = 0.9;
27inactive-opacity = 0.875;
28active-opacity = 1;
29alpha-step = 0.01;
30inactive-dim = 0.075;
a568f7fa 31# XXX: crashes on alpine???
32#blur-background = true;
d9362f34 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,"
9fddba79 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];
d9362f34 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.038017 seconds and 4 git commands to generate.