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) }