From 33743c410ae833b5a8e7c5638497d089781a3203 Mon Sep 17 00:00:00 2001 From: EinEtwas Date: Sun, 3 Nov 2024 20:11:08 +0100 Subject: [PATCH] fix(wm): disable hyprland animations --- home/wm/hyprland.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/home/wm/hyprland.nix b/home/wm/hyprland.nix index 147d2b0..ce45368 100644 --- a/home/wm/hyprland.nix +++ b/home/wm/hyprland.nix @@ -50,18 +50,18 @@ }; animations = { - enabled = true; + enabled = false; # Some default animations, see https://wiki.hyprland.org/Configuring/Animations/ for more bezier = "myBezier, 0.05, 0.9, 0.1, 1.05"; animation = [ - "windows, 1, 7, myBezier" - "windowsOut, 1, 7, default, popin 80%" - "windowsMove, 1, 7, myBezier" - "border, 1, 10, default" - "borderangle, 1, 8, default" - "fade, 1, 7, default" - "workspaces, 1, 6, default" + "windows, 0, 7, myBezier" + "windowsOut, 0, 7, default, popin 80%" + "windowsMove, 0, 7, myBezier" + "border, 0, 10, default" + "borderangle, 0, 8, default" + "fade, 0, 7, default" + "workspaces, 0, 6, default" ]; };