summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-07-22 00:21:57 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-07-22 00:21:57 +1000
commit6616cb13272132302f0b58573e98b4564e105e12 (patch)
tree94e84b563534a3114a957b16bd8df7bf157ee871
parentfeat: add a simple desktop clock (#238) (diff)
downloadcaelestia-shell-6616cb13272132302f0b58573e98b4564e105e12.tar.gz
caelestia-shell-6616cb13272132302f0b58573e98b4564e105e12.tar.bz2
caelestia-shell-6616cb13272132302f0b58573e98b4564e105e12.zip
background: some fixes for desktop clock
Loader + use implicit width/height + move
-rw-r--r--modules/background/Background.qml9
-rw-r--r--modules/background/DesktopClock.qml (renamed from widgets/DesktopClock.qml)16
2 files changed, 14 insertions, 11 deletions
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/widgets/DesktopClock.qml b/modules/background/DesktopClock.qml
index 30e4fc4..380e65a 100644
--- a/widgets/DesktopClock.qml
+++ b/modules/background/DesktopClock.qml
@@ -1,20 +1,18 @@
-import QtQuick
-import QtQuick.Controls
-import qs.config
-import qs.services
import qs.widgets
+import qs.services
+import qs.config
+import QtQuick
Item {
- id: clockRoot
- width: timeText.implicitWidth + Appearance.padding.large * 2
- height: timeText.implicitHeight + Appearance.padding.large * 2
-
+ 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
- text: Time.format("hh:mm:ss");
}
}