From 7a46a5c4e5d66b7ad87f5d0f8b1d5a56c70befd2 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Sun, 8 Mar 2026 21:01:21 +0100 Subject: [PATCH] faster text anim --- .../quickshell/ii/modules/common/widgets/StyledText.qml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/dots/.config/quickshell/ii/modules/common/widgets/StyledText.qml b/dots/.config/quickshell/ii/modules/common/widgets/StyledText.qml index 14f6a9c23..fa625c535 100644 --- a/dots/.config/quickshell/ii/modules/common/widgets/StyledText.qml +++ b/dots/.config/quickshell/ii/modules/common/widgets/StyledText.qml @@ -23,7 +23,7 @@ Text { component Anim: NumberAnimation { target: root - duration: 300 / 2 + duration: 130 easing.type: Easing.BezierSpline easing.bezierCurve: Appearance.animation.elementMoveFast.bezierCurve } @@ -55,7 +55,8 @@ Text { Anim { property: "opacity" to: 0 - easing.type: Easing.InSine + easing.type: Easing.BezierSpline + easing.bezierCurve: Appearance.animation.elementMoveFast.bezierCurve } } PropertyAction {} // Tie the text update to this point (we don't want it to happen during the first slide+fade) @@ -83,7 +84,8 @@ Text { Anim { property: "opacity" to: 1 - easing.type: Easing.OutSine + easing.type: Easing.BezierSpline + easing.bezierCurve: Appearance.animation.elementMoveFast.bezierCurve } } }