feat(lock): add fingerprint support

Credit to @wooze-pao for providing the required code in #2162
This commit is contained in:
0blivi0nis
2025-10-26 14:50:50 -07:00
parent 437b2020b7
commit 3aa1d5f1ed
4 changed files with 79 additions and 0 deletions
@@ -32,6 +32,16 @@ Scope {
}
}
Connections {
target: GlobalStates
function onScreenLockedChanged() {
if (GlobalStates.screenLocked) {
lockContext.reset();
lockContext.tryFingerUnlock();
}
}
}
onUnlocked: (targetAction) => {
// Perform the target action if it's not just unlocking
if (targetAction == LockContext.ActionEnum.Poweroff) {