-
Notifications
You must be signed in to change notification settings - Fork 2
/
compton
46 lines (38 loc) · 771 Bytes
/
compton
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Fading
fading = true;
fade-in-step = 0.03;
fade-out-step = 0.03;
# Blur
use-ewmh-active-win = true;
blur-background = false;
blur-kern = "5x5box"
backend = "xrender";
blur-background-exclude = [
"focused",
"name ~= 'slop'"
];
focus-exclude = [
"name ~= 'i3lock'",
"_NET_WM_NAME@:s = 'rofi'"
]
mark-ovredir-focused = true;
# Wintypes
wintypes:
{
tooltip = { fade = true; shadow = false; opacity = 1.0; focus = true; };
};
# Shadow
shadow = true;
no-dock-shadow = true;
no-dnd-shadow = true;
clear-shadow = true;
shadow-radius = 10;
shadow-offset-x = -5;
shadow-offset-y = 0;
shadow-opacity = 0.8;
shadow-red = 0.05;
shadow-green = 0.05;
shadow-blue = 0.05;
shadow-exclude = "!I3_FLOATING_WINDOW@:c";
shadow-ignore-shaped = true;
# vim:ft=conf: