-
Notifications
You must be signed in to change notification settings - Fork 0
/
picom.conf
60 lines (48 loc) · 1.05 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
backend = "glx";
glx-no-stencil = true;
glx-copy-from-front = false;
# Opacity
active-opacity = 1;
inactive-opacity = 1;
frame-opacity = 1;
inactive-opacity-override = false;
#blur-background = true;
#blur-background-exclude = [
#];
#blur-method = "dual_kawase";
#blur-strength = 4;
# Fading
fading = true;
fade-delta = 4;
no-fading-openclose = false;
fade-exclude = [ ];
# Other
mark-wmwin-focused = true;
mark-ovredir-focused = true;
detect-rounded-corners = true;
detect-client-opacity = true;
#refresh-rate = 0;
vsync = true;
dbe = false;
unredir-if-possible = false;
focus-exclude = [ ];
detect-transient = true;
detect-client-leader = true;
# Window type settings
wintypes:
{
dock = {
shadow = false;
};
};
opacity-rule = [
"80:class_g = 'Rofi'",
"95:class_g = 'Alacritty' && focused",
"70:class_g = 'Alacritty' && !focused",
"80:class_g = 'i3bar'",
# "95:class_g = 'discord' && focused",
# "70:class_g = 'discord' && !focused",
];
corner-radius = 10
rounded-corners-exclude = [ "class_g = 'Polybar'" ];
xrender-sync-fence = true;