dotfiles/picom/picom.conf

29 lines
391 B
Plaintext
Raw Normal View History

2023-10-29 19:09:51 +05:30
# INIT
backend = "glx";
# Opacity
opacity-rule = [
2023-10-29 20:14:10 +05:30
"80:class_g = 'music' && focused",
"40:class_g = 'music' && !focused",
"60:!focused",
"100:focused"
2023-10-29 19:09:51 +05:30
];
# Blur
blur:
{
method = "dual_kawase";
2023-10-29 20:14:10 +05:30
strength = 0;
2023-10-29 19:09:51 +05:30
}
blur-background-exclude = [
"class_g = 'kitty'"
]
2023-11-04 20:05:31 +05:30
corner-radius = 50
2023-10-29 19:09:51 +05:30
# Fading
fading=true;
2023-11-04 20:05:31 +05:30
fade-in-step=0.01;
fade-out-step=0.01;
2023-10-29 19:09:51 +05:30
fading-delta=1;