feat(desktop): shorten the layer fade-in animation

Give layer surfaces their own near-instant fade-in (layersIn and
fadeLayersIn), so the launcher and other overlays appear quicker than
the windows they sit over.
This commit is contained in:
2026-07-22 16:31:41 -04:00
parent a3c27a34e8
commit eb38ad1727

View File

@@ -98,6 +98,9 @@ in
animation = [ animation = [
"windows, 1, 3, ease" "windows, 1, 3, ease"
"fade, 1, 3, ease" "fade, 1, 3, ease"
# Layer surfaces like the launcher appear near-instantly.
"layersIn, 1, 1, ease"
"fadeLayersIn, 1, 1, ease"
"workspaces, 1, 3, ease" "workspaces, 1, 3, ease"
"border, 1, 3, ease" "border, 1, 3, ease"
]; ];