nosignal-shell/modules/lock/Lock.qml
2026-05-06 21:04:43 +10:00

74 lines
1.5 KiB
QML

pragma ComponentBehavior: Bound
import QtQuick
import Quickshell
import Quickshell.Io
import Quickshell.Wayland
import qs.components.misc
Scope {
property alias lock: lock
WlSessionLock {
id: lock
signal unlock
LockSurface {
lock: lock
pam: pam
}
}
Pam {
id: pam
lock: lock
}
Loader {
asynchronous: true
active: true
onLoaded: active = false
// Force a load of a screencopy so the one in the lock works
// My guess is the ICC backend loads async on first request, which if the lock is
// the first request it fails to capture (because it's async and the compositor
// refuses capture when locked)
sourceComponent: ScreencopyView {
captureSource: Quickshell.screens[0]
}
}
// qmllint disable unresolved-type
CustomShortcut {
// qmllint enable unresolved-type
name: "lock"
description: "Lock the current session"
onPressed: lock.locked = true
}
// qmllint disable unresolved-type
CustomShortcut {
// qmllint enable unresolved-type
name: "unlock"
description: "Unlock the current session"
onPressed: lock.unlock()
}
IpcHandler {
function lock(): void {
lock.locked = true;
}
function unlock(): void {
lock.unlock();
}
function isLocked(): bool {
return lock.locked;
}
target: "lock"
}
}