diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-01-09 19:53:59 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-01-22 08:34:30 -0500 |
| commit | c2e633cc07d195b62727630d6175dd94c9d5f432 (patch) | |
| tree | ffb11bda791b51eedaade40a8db774f11092b222 /modules/background | |
| parent | len :3 (diff) | |
| download | caelestia-shell-c2e633cc07d195b62727630d6175dd94c9d5f432.tar.gz caelestia-shell-c2e633cc07d195b62727630d6175dd94c9d5f432.tar.bz2 caelestia-shell-c2e633cc07d195b62727630d6175dd94c9d5f432.zip | |
remove more things, make lock screen use wallpaper not screenshot
Diffstat (limited to 'modules/background')
| -rw-r--r-- | modules/background/Background.qml | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/modules/background/Background.qml b/modules/background/Background.qml index e7b73ab..874c803 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 @@ -30,20 +31,13 @@ Loader { anchors.left: true anchors.right: true - Item { - id: behindClock + Image { + id: wallpaper anchors.fill: parent + asynchronous: true - Wallpaper { - id: wallpaper - } - - Visualiser { - anchors.fill: parent - screen: win.modelData - wallpaper: wallpaper - } + source: Paths.wallpaper ?? "" } } } |