From 6616cb13272132302f0b58573e98b4564e105e12 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Tue, 22 Jul 2025 00:21:57 +1000 Subject: background: some fixes for desktop clock Loader + use implicit width/height + move --- modules/background/Background.qml | 9 +++++++-- modules/background/DesktopClock.qml | 18 ++++++++++++++++++ widgets/DesktopClock.qml | 20 -------------------- 3 files changed, 25 insertions(+), 22 deletions(-) create mode 100644 modules/background/DesktopClock.qml delete mode 100644 widgets/DesktopClock.qml diff --git a/modules/background/Background.qml b/modules/background/Background.qml index 1c18786..a28f1dd 100644 --- a/modules/background/Background.qml +++ b/modules/background/Background.qml @@ -2,6 +2,7 @@ import qs.widgets import qs.config import Quickshell import Quickshell.Wayland +import QtQuick LazyLoader { activeAsync: Config.background.enabled @@ -27,11 +28,15 @@ LazyLoader { Wallpaper {} - DesktopClock { - visible: Config.background.desktopClock.enabled + Loader { anchors.right: parent.right anchors.bottom: parent.bottom anchors.margins: Appearance.padding.large + + active: Config.background.desktopClock.enabled + asynchronous: true + + source: "DesktopClock.qml" } } } diff --git a/modules/background/DesktopClock.qml b/modules/background/DesktopClock.qml new file mode 100644 index 0000000..380e65a --- /dev/null +++ b/modules/background/DesktopClock.qml @@ -0,0 +1,18 @@ +import qs.widgets +import qs.services +import qs.config +import QtQuick + +Item { + implicitWidth: timeText.implicitWidth + Appearance.padding.large * 2 + implicitHeight: timeText.implicitHeight + Appearance.padding.large * 2 + + StyledText { + id: timeText + + anchors.centerIn: parent + text: Time.format("hh:mm:ss") + font.pointSize: Appearance.font.size.extraLarge + font.bold: true + } +} diff --git a/widgets/DesktopClock.qml b/widgets/DesktopClock.qml deleted file mode 100644 index 30e4fc4..0000000 --- a/widgets/DesktopClock.qml +++ /dev/null @@ -1,20 +0,0 @@ -import QtQuick -import QtQuick.Controls -import qs.config -import qs.services -import qs.widgets - -Item { - id: clockRoot - width: timeText.implicitWidth + Appearance.padding.large * 2 - height: timeText.implicitHeight + Appearance.padding.large * 2 - - - StyledText { - id: timeText - anchors.centerIn: parent - font.pointSize: Appearance.font.size.extraLarge - font.bold: true - text: Time.format("hh:mm:ss"); - } -} -- cgit v1.2.3-freya