From cf303380b635bd82ebad3957452fdd394da9ef10 Mon Sep 17 00:00:00 2001 From: darksignal7 Date: Mon, 6 Oct 2025 23:07:55 +0300 Subject: [PATCH] remove 'rotating' animation (it was ugly imo) --- .../ii/modules/background/cookieClock/DateIndicator.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/quickshell/ii/modules/background/cookieClock/DateIndicator.qml b/.config/quickshell/ii/modules/background/cookieClock/DateIndicator.qml index c3ea8dc0b..0704fb870 100644 --- a/.config/quickshell/ii/modules/background/cookieClock/DateIndicator.qml +++ b/.config/quickshell/ii/modules/background/cookieClock/DateIndicator.qml @@ -20,7 +20,7 @@ Item { height: parent.height rotation: { if (!Config.options.time.secondPrecision) return 0; - return (secondHandLoader.item.rotation + 45) + (opacity * 360); // +45 degrees to align text's center // (opacity * 360) for open/close anim + return (secondHandLoader.item.rotation + 45); // +45 degrees to align text's center } opacity: root.style === "rotating" ? 1.0 : 0