From 43f1d5c53e8c305a9201a2f03da1b23595c417d6 Mon Sep 17 00:00:00 2001 From: darksignal7 Date: Fri, 3 Oct 2025 22:38:20 +0300 Subject: [PATCH] finalize simpler cookie clock --- .config/quickshell/ii/modules/background/CookieClock.qml | 5 ++--- .config/quickshell/ii/modules/settings/InterfaceConfig.qml | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.config/quickshell/ii/modules/background/CookieClock.qml b/.config/quickshell/ii/modules/background/CookieClock.qml index ce9c5c31a..db3f44d62 100644 --- a/.config/quickshell/ii/modules/background/CookieClock.qml +++ b/.config/quickshell/ii/modules/background/CookieClock.qml @@ -27,7 +27,7 @@ Item { property color colBackground: Appearance.colors.colSecondaryContainer property color colOnBackground: ColorUtils.mix(Appearance.colors.colPrimary, Appearance.colors.colSecondaryContainer, 0.5) property color colHourHand: Appearance.colors.colPrimary - property color colMinuteHand: Appearance.colors.colSecondary + property color colMinuteHand: Appearance.colors.colSecondaryActive property color colOnHourHand: Appearance.colors.colOnPrimary readonly property list clockNumbers: DateTime.time.split(/[: ]/) @@ -58,7 +58,6 @@ Item { // 12 dots around the cookie Repeater { - model: 12 Item { visible: clockStyle === "simpler-cookie" ? false : true @@ -86,7 +85,7 @@ Item { z: 1 anchors.centerIn: cookie spacing: -16 - visible: false // LOOK + visible: clockStyle === "simpler-cookie" ? false : true // Numbers Repeater { diff --git a/.config/quickshell/ii/modules/settings/InterfaceConfig.qml b/.config/quickshell/ii/modules/settings/InterfaceConfig.qml index 060cc3fac..5540ebfee 100644 --- a/.config/quickshell/ii/modules/settings/InterfaceConfig.qml +++ b/.config/quickshell/ii/modules/settings/InterfaceConfig.qml @@ -63,7 +63,7 @@ ContentPage { }, { displayName: Translation.tr("Material simpler cookie"), - icon: "cookie", + icon: "circle", value: "simpler-cookie" }, ]