dotfiles/.config/picom.conf

22 lines
351 B
Plaintext
Raw Normal View History

2022-09-03 13:16:50 +00:00
# basic configuration
backend = "glx";
vsync = true;
glx-no-stencil = true;
panting-on-overlay = true;
opengl-swc = true;
# Fading
fading = true;
2022-09-03 16:38:49 +00:00
fade-in-step = 0.05;
fade-out-step = 0.05;
2022-09-03 13:16:50 +00:00
# Corners
2022-09-03 16:38:49 +00:00
corner-radius = 10;
2022-09-03 13:16:50 +00:00
rounded-corners-exclude = [
2022-09-03 16:37:33 +00:00
"class_g = 'dwmtray'",
2022-09-03 13:16:50 +00:00
"class_g = 'dwm'",
2022-09-03 16:37:33 +00:00
"class_g = 'dmenu'",
2022-09-03 13:16:50 +00:00
"class_g = 'Dunst'"
]