blob: 326035d036755fc95131aefb347273b8c376ec98 (
plain)
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
47
48
49
50
51
52
|
# picom configuration
# Blur
blur-method = "dual_kawase";
blur-strength = 5;
blur-background-exclude = [
"class_g = 'Rofi'"
];
# Shadow
shadow = true;
shadow-radius = 20;
shadow-offset-x = -20;
shadow-offset-y = -20;
shadow-opacity = 0.8;
shadow-exclude = [
"class_g = 'Rofi'",
]
# Crop shadow of a window fully on a particular Xinerama screen to the screen.
xinerama-shadow-crop = true;
# General
backend = "glx";
wintypes: {
dock = {
full-shadow = true;
blur-background = false;
};
utility = {
shadow = false;
blur-background = false;
};
popup_menu = {
shadow = false;
};
tooltip = {
shadow = false;
opacity = 1.0;
blur-background = false;
};
dnd = {
shadow = false;
blur-background = false;
};
};
|