dotfiles/picom/picom.conf

27 lines
371 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'"
]
# Fading
fading=true;
2023-10-29 20:14:10 +05:30
fade-in-step=0.03;
fade-out-step=0.03;
2023-10-29 19:09:51 +05:30
fading-delta=1;