dotfiles/.config/picom.conf

33 lines
625 B
Plaintext
Raw Permalink 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 = false;
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;
round-borders = 2;
shadow-opacity = 1;
detect-rounded-corners = false;
2022-10-25 23:37:48 +00:00
round-borders-rule = [
2023-08-04 22:02:15 +00:00
"0:class_g = 'Polybar'",
"3:class_g = 'XTerm'",
"3:class_g = 'URxvt'",
"15:class_g = 'Signal'"
2022-10-25 23:37:48 +00:00
];
2022-09-03 13:16:50 +00:00
rounded-corners-exclude = [
2023-08-04 22:02:15 +00:00
"class_g = 'Polybar'",
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'",
"class_g = 'Dunst'",
"name = 'scratchpad'"
2022-09-03 13:16:50 +00:00
]