From 4be6478802100e3a484f6b42d0d84052ff31050b Mon Sep 17 00:00:00 2001 From: "s0wlz (Matthias Puchstein)" Date: Mon, 1 Jun 2026 14:15:20 +0200 Subject: [PATCH] hypr: fix windowsIn animation missing speed field hl.animation rejects a spring leaf without a speed (Hyprland logged "missing required field speed"), so windowsIn fell back to default. Add speed so the snappy spring actually applies. --- dot_config/hypr/hyprland.d.lua/general.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dot_config/hypr/hyprland.d.lua/general.lua b/dot_config/hypr/hyprland.d.lua/general.lua index c5a7394..ca14163 100644 --- a/dot_config/hypr/hyprland.d.lua/general.lua +++ b/dot_config/hypr/hyprland.d.lua/general.lua @@ -70,7 +70,7 @@ hl.curve("snappy", { type = "spring", mass = 1, stiffness = 165, dampening = 17 hl.animation({ leaf = "global", enabled = true, speed = 10, bezier = "default" }) hl.animation({ leaf = "border", enabled = true, speed = 5.39, bezier = "easeOutQuint" }) hl.animation({ leaf = "windows", enabled = true, speed = 4.79, bezier = "easeOutQuint" }) -hl.animation({ leaf = "windowsIn", enabled = true, spring = "snappy", style = "popin 90%" }) +hl.animation({ leaf = "windowsIn", enabled = true, speed = 4.1, spring = "snappy", style = "popin 90%" }) hl.animation({ leaf = "windowsOut", enabled = true, speed = 1.49, bezier = "linear", style = "popin 87%" }) hl.animation({ leaf = "fadeIn", enabled = true, speed = 1.73, bezier = "almostLinear" }) hl.animation({ leaf = "fadeOut", enabled = true, speed = 1.46, bezier = "almostLinear" })