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/lock | |
| 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/lock')
| -rw-r--r-- | modules/lock/LockSurface.qml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/modules/lock/LockSurface.qml b/modules/lock/LockSurface.qml index 279c551..c706067 100644 --- a/modules/lock/LockSurface.qml +++ b/modules/lock/LockSurface.qml @@ -3,6 +3,7 @@ pragma ComponentBehavior: Bound import qs.components import qs.services import qs.config +import qs.utils import Quickshell.Wayland import QtQuick import QtQuick.Effects @@ -159,12 +160,12 @@ WlSessionLockSurface { } } - ScreencopyView { + Image { id: background anchors.fill: parent - captureSource: root.screen - opacity: 0 + source: Paths.wallpaper ?? "" + opacity: 1 layer.enabled: true layer.effect: MultiEffect { |