From 7ae53ac3641fbc71239d2cc05a120cad01e55f7e Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Sat, 11 Oct 2025 10:55:35 +0200 Subject: [PATCH] rename dateIndicator folder --- .../ii/modules/background/cookieClock/CookieClock.qml | 3 ++- .../{dateIndicators => dateIndicator}/BubbleDate.qml | 0 .../{dateIndicators => dateIndicator}/DateIndicator.qml | 0 .../{dateIndicators => dateIndicator}/RectangleDate.qml | 0 .../{dateIndicators => dateIndicator}/RotatingDate.qml | 2 +- 5 files changed, 3 insertions(+), 2 deletions(-) rename .config/quickshell/ii/modules/background/cookieClock/{dateIndicators => dateIndicator}/BubbleDate.qml (100%) rename .config/quickshell/ii/modules/background/cookieClock/{dateIndicators => dateIndicator}/DateIndicator.qml (100%) rename .config/quickshell/ii/modules/background/cookieClock/{dateIndicators => dateIndicator}/RectangleDate.qml (100%) rename .config/quickshell/ii/modules/background/cookieClock/{dateIndicators => dateIndicator}/RotatingDate.qml (94%) diff --git a/.config/quickshell/ii/modules/background/cookieClock/CookieClock.qml b/.config/quickshell/ii/modules/background/cookieClock/CookieClock.qml index f376576c3..f090a8d2b 100644 --- a/.config/quickshell/ii/modules/background/cookieClock/CookieClock.qml +++ b/.config/quickshell/ii/modules/background/cookieClock/CookieClock.qml @@ -9,7 +9,7 @@ import QtQuick import QtQuick.Layouts import Qt5Compat.GraphicalEffects -import "./dateIndicators" +import "./dateIndicator" import "./minuteMarks" Item { @@ -79,6 +79,7 @@ Item { hourNumberSize: root.hourNumberSize color: root.colOnBackground } + HourMarks { anchors.centerIn: parent implicitSize: root.hourMarkSize diff --git a/.config/quickshell/ii/modules/background/cookieClock/dateIndicators/BubbleDate.qml b/.config/quickshell/ii/modules/background/cookieClock/dateIndicator/BubbleDate.qml similarity index 100% rename from .config/quickshell/ii/modules/background/cookieClock/dateIndicators/BubbleDate.qml rename to .config/quickshell/ii/modules/background/cookieClock/dateIndicator/BubbleDate.qml diff --git a/.config/quickshell/ii/modules/background/cookieClock/dateIndicators/DateIndicator.qml b/.config/quickshell/ii/modules/background/cookieClock/dateIndicator/DateIndicator.qml similarity index 100% rename from .config/quickshell/ii/modules/background/cookieClock/dateIndicators/DateIndicator.qml rename to .config/quickshell/ii/modules/background/cookieClock/dateIndicator/DateIndicator.qml diff --git a/.config/quickshell/ii/modules/background/cookieClock/dateIndicators/RectangleDate.qml b/.config/quickshell/ii/modules/background/cookieClock/dateIndicator/RectangleDate.qml similarity index 100% rename from .config/quickshell/ii/modules/background/cookieClock/dateIndicators/RectangleDate.qml rename to .config/quickshell/ii/modules/background/cookieClock/dateIndicator/RectangleDate.qml diff --git a/.config/quickshell/ii/modules/background/cookieClock/dateIndicators/RotatingDate.qml b/.config/quickshell/ii/modules/background/cookieClock/dateIndicator/RotatingDate.qml similarity index 94% rename from .config/quickshell/ii/modules/background/cookieClock/dateIndicators/RotatingDate.qml rename to .config/quickshell/ii/modules/background/cookieClock/dateIndicator/RotatingDate.qml index dc381d332..34fbef94e 100644 --- a/.config/quickshell/ii/modules/background/cookieClock/dateIndicators/RotatingDate.qml +++ b/.config/quickshell/ii/modules/background/cookieClock/dateIndicator/RotatingDate.qml @@ -13,7 +13,7 @@ Item { readonly property string dialStyle: Config.options.background.clock.cookie.dialNumberStyle readonly property bool timeIndicators: Config.options.background.clock.cookie.timeIndicators - property real radius: style === "rotating" ? dialStyle === "numbers" || timeIndicators ? 90 : 75 : 0 + property real radius: style === "rotating" ? 90 : 0 Behavior on radius { animation: Appearance.animation.elementResize.numberAnimation.createObject(this) }