From edde61a46cf879a56e562c75e43199006b7d8889 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Sun, 12 Oct 2025 16:27:32 +0200 Subject: [PATCH] bg clock: make second hand anim more continuous --- .../ii/modules/background/cookieClock/SecondHand.qml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.config/quickshell/ii/modules/background/cookieClock/SecondHand.qml b/.config/quickshell/ii/modules/background/cookieClock/SecondHand.qml index c05003020..a4643a259 100644 --- a/.config/quickshell/ii/modules/background/cookieClock/SecondHand.qml +++ b/.config/quickshell/ii/modules/background/cookieClock/SecondHand.qml @@ -19,7 +19,10 @@ Item { Behavior on rotation { enabled: Config.options.background.clock.cookie.constantlyRotate // Animating every second is expensive... - animation: Appearance.animation.elementMoveFast.numberAnimation.createObject(this) + animation: NumberAnimation { + duration: 1000 // 1 second + easing.type: Easing.InOutQuad + } } Rectangle {