fix(wm): disable hyprland animations

This commit is contained in:
EinEtwas 2024-11-03 20:11:08 +01:00
parent fa28455534
commit 33743c410a
Signed by: etwas
SSH key fingerprint: SHA256:bHhIeAdn/2k9jmOs6+u6ox98VYmoHUN3HfnpV2w8Ws0

View file

@ -50,18 +50,18 @@
}; };
animations = { animations = {
enabled = true; enabled = false;
# Some default animations, see https://wiki.hyprland.org/Configuring/Animations/ for more # Some default animations, see https://wiki.hyprland.org/Configuring/Animations/ for more
bezier = "myBezier, 0.05, 0.9, 0.1, 1.05"; bezier = "myBezier, 0.05, 0.9, 0.1, 1.05";
animation = [ animation = [
"windows, 1, 7, myBezier" "windows, 0, 7, myBezier"
"windowsOut, 1, 7, default, popin 80%" "windowsOut, 0, 7, default, popin 80%"
"windowsMove, 1, 7, myBezier" "windowsMove, 0, 7, myBezier"
"border, 1, 10, default" "border, 0, 10, default"
"borderangle, 1, 8, default" "borderangle, 0, 8, default"
"fade, 1, 7, default" "fade, 0, 7, default"
"workspaces, 1, 6, default" "workspaces, 0, 6, default"
]; ];
}; };