-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.picom.conf
81 lines (74 loc) · 1.53 KB
/
.picom.conf
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# corners
corner-radius = 6.0; # for xborders it needs non-zero
round-borders = 1;
# shadow
shadow = true;
shadow-radius = 7;
shadow-opacity = 0.6;
shadow-offset-x = -7;
shadow-offset-y = -5;
shadow-exclude = [
"class_g = 'Rofi'",
"class_g = 'Google-chrome'",
"class_g = 'i3-frame'"
];
# fading
fading = true
fade-in-step = 0.03;
fade-out-step = 0.03;
fade-delta = 5;
fade-exclude = [];
# opacity
inactive-opacity = 1;
opacity-rule = [
"100:class_g = 'Chromium'",
"100:class_g = 'Slack'",
"100:class_g = 'Brave-browser'",
"100:class_g = 'Google-chrome'",
"100:class_g = 'zoom '",
"100:class_g = 'Rofi'"
];
focus-exclude = [];
# background blurring
blur-background = false;
blur-background-fixed = false;
blur-kern = "3x3box";
blur-background-exclude = [
"window_type = 'dock'",
"window_type = 'desktop'"
];
# other
markwmwin-focused = true;
mark-ovredir-foxued = true;
detect-rounded-corners = true;
detect-client-opacity = true;
use-ewmh-active-win = false;
unredir-if-possible = false;
detect-transient = true;
detect-client-leader = true;
invert-color-include = [];
# glx backend
glx-no-stencil = true;
glx-no-rebind-pixmap = false;
use-damage = false;
vsync = false;
backend = "xrender";
# window type settings
wintypes:
{
tooltip = {
fade = true;
shadow = true;
opacity = 1.00;
focus = true;
full-shadow = false;
}
dock = {
shadow = false;
clip-shadow-above = true;
}
dnd = { shadow = false; }
menu = { shadow = false; }
popup_menu = { opacity = 1.0; }
dropdown_menu = { opacity = 1.0; }
};