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