diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-01-09 19:53:59 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-01-09 19:53:59 -0500 |
| commit | 9c6aea03b58ead9044184724613ea1baa2a3cd35 (patch) | |
| tree | 982e19a91803cc2842a11fecd272800af373fa43 /modules/background/Background.qml | |
| parent | len :3 (diff) | |
| download | caelestia-shell-9c6aea03b58ead9044184724613ea1baa2a3cd35.tar.gz caelestia-shell-9c6aea03b58ead9044184724613ea1baa2a3cd35.tar.bz2 caelestia-shell-9c6aea03b58ead9044184724613ea1baa2a3cd35.zip | |
remove more things, make lock screen use wallpaper not screenshot
Diffstat (limited to '')
| -rw-r--r-- | modules/background/Background.qml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/modules/background/Background.qml b/modules/background/Background.qml index 1bb7d17..f7c0a3f 100644 --- a/modules/background/Background.qml +++ b/modules/background/Background.qml @@ -4,6 +4,7 @@ import qs.components import qs.components.containers import qs.services import qs.config +import qs.utils import Quickshell import Quickshell.Wayland import QtQuick @@ -31,8 +32,13 @@ Loader { anchors.left: true anchors.right: true - Wallpaper { + Image { id: wallpaper + + anchors.fill: parent + asynchronous: true + + source: Paths.wallpaper ?? "" } } } |