dotfiles/.config/picom.conf

33 lines
625 B
Text
Raw Normal View History

2022-09-03 15:16:50 +02:00
# basic configuration
backend = "glx";
vsync = true;
glx-no-stencil = true;
panting-on-overlay = true;
opengl-swc = true;
# Fading
fading = false;
2022-09-03 18:38:49 +02:00
fade-in-step = 0.05;
fade-out-step = 0.05;
2022-09-03 15:16:50 +02:00
# Corners
2022-09-03 18:38:49 +02:00
corner-radius = 10;
round-borders = 2;
shadow-opacity = 1;
detect-rounded-corners = false;
2022-10-26 01:37:48 +02:00
round-borders-rule = [
2023-08-05 00:02:15 +02:00
"0:class_g = 'Polybar'",
"3:class_g = 'XTerm'",
"3:class_g = 'URxvt'",
"15:class_g = 'Signal'"
2022-10-26 01:37:48 +02:00
];
2022-09-03 15:16:50 +02:00
rounded-corners-exclude = [
2023-08-05 00:02:15 +02:00
"class_g = 'Polybar'",
2022-09-03 18:37:33 +02:00
"class_g = 'dwmtray'",
2022-09-03 15:16:50 +02:00
"class_g = 'dwm'",
2022-09-03 18:37:33 +02:00
"class_g = 'dmenu'",
"class_g = 'Dunst'",
"name = 'scratchpad'"
2022-09-03 15:16:50 +02:00
]