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" }, ]