From 5caf4faa3a6b34cea33a21ed68bd9006bc07f8b1 Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Thu, 24 Jul 2025 23:47:09 -0700 Subject: [PATCH] qs: improve notif damper --- .../quickshell/shell/notifications/FlickableNotification.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/user/modules/quickshell/shell/notifications/FlickableNotification.qml b/modules/user/modules/quickshell/shell/notifications/FlickableNotification.qml index 5b9284d..4ca36ab 100644 --- a/modules/user/modules/quickshell/shell/notifications/FlickableNotification.qml +++ b/modules/user/modules/quickshell/shell/notifications/FlickableNotification.qml @@ -181,8 +181,8 @@ Item { FrameAnimation { function dampingVelocity(currentVelocity, delta) { - const spring = 150.0; - const damping = 20.0; + const spring = 100.0; + const damping = 12.0; const springForce = spring * delta; const dampingForce = -damping * currentVelocity; return springForce + dampingForce;