]> git.sev.monster Git - dotfiles.git/blob - xdg/compton.conf
urxvt block cursor + root term; zsh, dunst changes
[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         # root terminal
20         "class_i = 'URxvtRoot'"
21 ];
22 shadow-ignore-shaped = true;
23
24 # Opacity
25 menu-opacity = 0.9;
26 inactive-opacity = 0.875;
27 active-opacity = 1;
28 alpha-step = 0.01;
29 inactive-dim = 0.075;
30 blur-background = true;
31 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,"
32 opacity-rule = [
33         # i3 tabbed windows
34         "0:_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'"
35 ];
36 blur-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 ];
45
46 # Fading
47 fading = true;
48 fade-delta = 16;
49 fade-in-step = 0.05;
50 fade-out-step = 0.05;
51
52 # Rendering
53 backend = "glx"
54 glx-no-stencil = true;
55 glx-no-rebind-pixmap = true;
56 paint-on-overlay = true;
57 refresh-rate = 0;
58 vsync = "opengl-swc";
59
60 # Other
61 mark-wmwin-focused = true;
62 mark-ovredir-focused = true;
63 use-ewmh-active-win = true;
64 detect-rounded-corners = true;
65 detect-client-opacity = true;
66 detect-transient = true;
67 detect-client-leader = true;
68
69 # Window type settings
70 wintypes:
71 {
72         tooltip = { fade = true; shadow = true; opacity = 0.9; focus = true; };
73 };
This page took 0.075924 seconds and 4 git commands to generate.