From e11313630ac27b12536e1d71917550cf76d36d14 Mon Sep 17 00:00:00 2001 From: benstrb Date: Sat, 28 Feb 2026 23:47:15 +0100 Subject: [PATCH] non important commit --- .../quick_shell/quick_config/config/shell.qml | 33 ++++++++++--------- 1 file changed, 18 insertions(+), 15 deletions(-) diff --git a/configuration/modules/dots/quick_shell/quick_config/config/shell.qml b/configuration/modules/dots/quick_shell/quick_config/config/shell.qml index 0f4f2eb..1103f49 100644 --- a/configuration/modules/dots/quick_shell/quick_config/config/shell.qml +++ b/configuration/modules/dots/quick_shell/quick_config/config/shell.qml @@ -3,23 +3,26 @@ import QtQuick ShellRoot { id: root - PanelWindow { - anchors.top: true - anchors.left: true - anchors.bottom: true - implicitWidth: 50 - color: "#1a1b26" - SystemClock { - id: clock - precision: SystemClock.Minutes - } + SystemClock { + id: clock + precision: SystemClock.Minutes + } - Text { - anchors.centerIn: parent - color: "#FFFFFF" - font.pixelSize: 14 - text: Qt.formatDateTime(clock.date, "hh\nmm") + Variants { + PanelWindow { + anchors.top: true + anchors.left: true + anchors.bottom: true + implicitWidth: 50 + color: "#1a1b26" + + Text { + anchors.centerIn: parent + color: "#FFFFFF" + font.pixelSize: 14 + text: Qt.formatDateTime(clock.date, "hh\nmm") + } } } }