diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-11 23:33:58 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-11 23:33:58 +1000 |
| commit | 2c793ed8f0470b30d16e9431d07038cf8268fc95 (patch) | |
| tree | 5814dd923712732ccecb89d81b08c39ceb1fac1b /modules/lock/LockSurface.qml | |
| parent | lock: add notifs (diff) | |
| download | caelestia-shell-2c793ed8f0470b30d16e9431d07038cf8268fc95.tar.gz caelestia-shell-2c793ed8f0470b30d16e9431d07038cf8268fc95.tar.bz2 caelestia-shell-2c793ed8f0470b30d16e9431d07038cf8268fc95.zip | |
lock/notifs: add empty placeholder
Diffstat (limited to 'modules/lock/LockSurface.qml')
| -rw-r--r-- | modules/lock/LockSurface.qml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/lock/LockSurface.qml b/modules/lock/LockSurface.qml index 2a3fd72..d773c63 100644 --- a/modules/lock/LockSurface.qml +++ b/modules/lock/LockSurface.qml @@ -1,7 +1,6 @@ pragma ComponentBehavior: Bound import qs.components -import qs.components.effects import qs.services import qs.config import Quickshell.Wayland @@ -14,6 +13,7 @@ WlSessionLockSurface { required property WlSessionLock lock required property Pam pam + readonly property bool animating: initAnim.running || unlockAnim.running property bool locked Component.onCompleted: locked = true @@ -89,6 +89,8 @@ WlSessionLockSurface { } ParallelAnimation { + id: initAnim + running: true Anim { |