From 9a32445b44bb70a174fa5cba7171ab08268d20e9 Mon Sep 17 00:00:00 2001 From: quirinecker Date: Mon, 3 Aug 2026 22:49:13 +0200 Subject: [PATCH] adjusted speed for window animations --- homemanager/hyprland/hyprland.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homemanager/hyprland/hyprland.lua b/homemanager/hyprland/hyprland.lua index 19559ae..b38d417 100644 --- a/homemanager/hyprland/hyprland.lua +++ b/homemanager/hyprland/hyprland.lua @@ -167,11 +167,11 @@ hl.curve("almostLinear", { type = "bezier", points = { { 0.5, 0.5 }, { 0.75, 1 } hl.curve("quick", { type = "bezier", points = { { 0.15, 0 }, { 0.1, 1 } } }) -- Default springs -hl.curve("easy", { type = "spring", mass = 1, stiffness = 71.2633, dampening = 15.8273644 }) +hl.curve("easy", { type = "spring", mass = 1, stiffness = 1200, dampening = 100 }) 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, spring = "easy" }) +hl.animation({ leaf = "windows", enabled = true, speed = 10.0, spring = "easy" }) hl.animation({ leaf = "windowsIn", enabled = true, speed = 4.1, spring = "easy", style = "popin 87%" }) 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" })