From 1f208125bf17cf08e652593b83af79f95991c7a3 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Wed, 5 Nov 2025 00:41:28 +0100 Subject: [PATCH] remove clock scale option (it has never been good) --- .../.config/quickshell/ii/modules/common/Config.qml | 1 - .../ii/modules/settings/InterfaceConfig.qml | 13 ------------- 2 files changed, 14 deletions(-) diff --git a/dots/.config/quickshell/ii/modules/common/Config.qml b/dots/.config/quickshell/ii/modules/common/Config.qml index 948f92601..11ab5d571 100644 --- a/dots/.config/quickshell/ii/modules/common/Config.qml +++ b/dots/.config/quickshell/ii/modules/common/Config.qml @@ -152,7 +152,6 @@ Singleton { property real x: 100 property real y: 100 property string style: "cookie" // Options: "cookie", "digital" - property real scale: 1 property JsonObject cookie: JsonObject { property bool aiStyling: false property int sides: 14 diff --git a/dots/.config/quickshell/ii/modules/settings/InterfaceConfig.qml b/dots/.config/quickshell/ii/modules/settings/InterfaceConfig.qml index d1b8030ec..dfacd8129 100644 --- a/dots/.config/quickshell/ii/modules/settings/InterfaceConfig.qml +++ b/dots/.config/quickshell/ii/modules/settings/InterfaceConfig.qml @@ -19,19 +19,6 @@ ContentPage { Config.options.background.widgets.clock.enable = checked; } } - - - ConfigSpinBox { - icon: "loupe" - text: Translation.tr("Scale (%)") - value: Config.options.background.widgets.clock.scale * 100 - from: 1 - to: 200 - stepSize: 2 - onValueChanged: { - Config.options.background.widgets.clock.scale = value / 100; - } - } ContentSubsection { title: Translation.tr("Clock placement strategy")