-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpicom.conf
More file actions
executable file
·148 lines (128 loc) · 3.46 KB
/
picom.conf
File metadata and controls
executable file
·148 lines (128 loc) · 3.46 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
# ROUNDED CORNERS
corner-radius = 19.0;
# rounded-corners-exclude = [
# "class_g = 'Polybar'",
# ];
round-borders = 9;
# general settings
experimental-backends = true;
backend = "glx";
#########################
glx-no-stencil = true; # Might for nvidia driver if lag need to remove
glx-copy-from-front = false;
##########################
detect-rounded-corners = true;
# detect-client-opacity = true;
glx-no-rebind-pixmap = true;
refresh-rate = 0;
vsync = true;
#paint-on-overlay = true;
#############
## SHADOW
#############
#shadow = true;
#shadow-radius = 45;
#shadow-offset-x = -30;
#shadow-offset-y = -30;
#shadow-opacity = 0.5;
#shadow-red = 0.0;
#shadow-green = 0.0;
#shadow-blue = 0.0;
#shadow-exclude = "class_g = 'Polybar'";
#shadow-ignore-shaped = false;
## shadow-exclude-reg = "x10+0+0";
#xinerama-shadow-crop = false;
##############
### BLUR
##############
#blur: {
# method = "kawase";
# #method = "kernel";
# strength = 12;
# # deviation = 1.0;
# # kernel = "11x11gaussian";
# background = false;
# background-frame = false;
# background-fixed = false;
# kern = "3x3box";
#}
#
## Exclude conditions for background blur.
#blur-background-exclude = [
# #"window_type = 'dock'",
# #"window_type = 'desktop'",
# #"class_g = 'URxvt'",
# #
# # prevents picom from blurring the background
# # when taking selection screenshot with `main`
# # https://github.com/naelstrof/maim/issues/130
# "_GTK_FRAME_EXTENTS@:c"
#];
#############
## OPACITY
#############
#inactive-opacity = 0.90;
#active-opacity = 1;
# active-opacity = 0.93;
#frame-opacity = 1;
#inactive-opacity-override = false;
#inactive-dim = 0.05;
# inactive-dim-fixed = true;
inactive-opacity = 1;
active-opacity = 1;
frame-opacity = 1;
inactive-opacity-override = false;
opacity-rule = [
"100:class_g *?= 'virt-manager'",
"100:class_g *?= 'PPSSPPSDL'",
"100:class_g *?= 'retroarch'",
"100:class_g *?= 'minetest'",
"100:class_g *?= 'dolphin-emu'",
"100:class_g *?= 'teams'",
"100:class_g *?= 'kawanime'",
"100:class_g *?= 'freezer'",
"100:class_g *?= 'zoom'",
"100:class_g *?= 'firefox'",
"100:class_g *?= 'signal'",
"100:class_g *?= 'chromium'",
"100:class_g *?= 'mullvad'",
"100:class_g *?= 'freetube'",
"100:class_g *?= 'onlyoffice-desktopeditors'",
"100:class_g *?= 'librewolf'",
"100:class_g *?= 'Deezloader'",
"100:class_g *?= 'runelite'",
"100:class_g *?= 'com.github.needleandthread.vocal'",
"100:class_g *?= 'xonotic-sdl'",
"100:class_g *?= 'openrct2'",
"100:class_g *?= 'Parkitect.x86_64'",
"100:class_g *?= 'kodi'",
"100:class_g *?= 'PCSX2'",
"100:name *?= 'mpv' && focused",
"100:name *?= 'mpv' && !focused",
"100:name *?= 'sxiv' && focused",
"100:name *?= 'sxiv' && !focused",
"100:name *?= 'ueberzug'",
];
#############
## FADING
#############
#fading = true;
#fade-delta = 15;
#fade-in-step = 0.05;
#fade-out-step = 0.05;
#no-fading-openclose = false;
#fade-exclude = [ ];
# menu = { shadow = false; };
dropdown_menu = { shadow = false; };
popup_menu = { shadow = false; };
utility = { shadow = false; };
opacity-rule = [ "100:_NET_WM_STATE@[0]:32a = '_NET_WM_STATE_FULLSCREEN'",
"100:_NET_WM_STATE@[1]:32a = '_NET_WM_STATE_FULLSCREEN'",
"100:_NET_WM_STATE@[2]:32a = '_NET_WM_STATE_FULLSCREEN'",
"100:_NET_WM_STATE@[3]:32a = '_NET_WM_STATE_FULLSCREEN'",
"100:_NET_WM_STATE@[4]:32a = '_NET_WM_STATE_FULLSCREEN'" ];
unredir-if-possible = true;
no-ewmh-fullscreen = true;
detect-transient = false
# For Nvidia-user
xrender-sync-fence = true;