From 3e3e98b340fc462cdc5ba4fb0f4ac09f94a68cd8 Mon Sep 17 00:00:00 2001 From: Kaj Date: Mon, 21 Jul 2025 16:17:23 +0200 Subject: feat: add a simple desktop clock (#238) * Adds a simple desktop clock * Adds ability to change color * Sets the desktop clock to be disabled by default * Improves desktop clock code based on feedback * Disable the clock by default * Fixes config of background clock * Removes the timer for the desktop clock --------- Co-authored-by: Kaj Giesbers --- modules/background/Background.qml | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'modules/background/Background.qml') diff --git a/modules/background/Background.qml b/modules/background/Background.qml index c744baa..1c18786 100644 --- a/modules/background/Background.qml +++ b/modules/background/Background.qml @@ -26,6 +26,13 @@ LazyLoader { anchors.right: true Wallpaper {} + + DesktopClock { + visible: Config.background.desktopClock.enabled + anchors.right: parent.right + anchors.bottom: parent.bottom + anchors.margins: Appearance.padding.large + } } } } -- cgit v1.2.3-freya