This commit is contained in:
2026-05-01 22:05:33 -05:00
parent 5a84a8f294
commit b7bf86aab7
34 changed files with 1224 additions and 574 deletions

View File

@@ -97,11 +97,30 @@ animations {
// enable transparency
window-rule {
match is-active=false
opacity 1.0 //inactive transparency
opacity 0.8 //inactive transparency
background-effect {
blur true
//xray false
}
}
window-rule {
match is-active=true
opacity 1.0 //active transparency
opacity 0.95 //active transparency
background-effect {
blur true
//xray false
}
}
// Make top and overlay layers use the regular blur (if enabled),
// while bottom and background layers keep using the efficient xray blur.
layer-rule {
match layer="top"
match layer="overlay"
background-effect {
//blur true
xray false
}
}
window-rule {
draw-border-with-background false