NameSizeMode
..
.config/picom.conf 1K ?rw-r--r--
01
02
03
04
05
06
07
08
09
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
#         _                                       __ 
#   _ __ (_) ___ ___  _ __ ___    ___ ___  _ __  / _|
#  | '_ \| |/ __/ _ \| '_ ` _ \  / __/ _ \| '_ \| |_ 
#  | |_) | | (_| (_) | | | | | || (_| (_) | | | |  _|
#  | .__/|_|\___\___/|_| |_| |_(_)___\___/|_| |_|_|  
#  |_|                                               
#
# Pablo (C) 2025

# backend to use: "xrender" or "glx".
backend = "glx";
glx-no-stencil = true;
glx-copy-from-front = false;

# disable client-side shadows on windows.
shadow = false;

# opacity
inactive-opacity = 1;
active-opacity = 1;
frame-opacity = 1;

# fade windows during opacity changes.
fading = true;
fade-delta = 5;
fade-in-step = 0.03;
fade-out-step = 0.03;
no-fading-openclose = true;

#################################
#
# Other
#
#################################

# Vertical synchronization: match the refresh rate of the monitor
vsync = false;

# Enable DBE painting mode, intended to use with VSync to (hopefully) eliminate tearing.
# Reported to have no effect, though.
dbe = false;

# unredirect all windows if a full-screen opaque window is detected,
# to maximize performance for full-screen windows, like games.
unredir-if-possible = true;