33 lines
546 B
Plaintext
33 lines
546 B
Plaintext
# INIT
|
|
backend = "glx";
|
|
|
|
# Opacity
|
|
opacity-rule = [
|
|
# "70:class_g = 'kitty' && focused",
|
|
"30:class_g = 'kitty' && !focused",
|
|
"80:class_g = 'music' && focused",
|
|
"40:class_g = 'music' && !focused",
|
|
"100:class_g = 'firefox' && focused",
|
|
"60:class_g = 'firefox' && !focused"
|
|
];
|
|
|
|
# Blur
|
|
blur:
|
|
{
|
|
method = "dual_kawase";
|
|
strength = 5;
|
|
}
|
|
blur-background-exclude = [
|
|
"class_g = 'kitty'"
|
|
]
|
|
|
|
# Fading
|
|
fading=true;
|
|
fade-in-step=1;
|
|
fade-out-step=1;
|
|
fading-delta=1;
|
|
fade-exclude = [
|
|
"class_g = 'Rofi'"
|
|
]
|
|
|