From e3db8372a7f1d8de4c2d0ff311c468e3db2248c4 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Thu, 30 Oct 2025 09:04:58 +0100 Subject: [PATCH] lock: remove useless comment, declare fingerprint check proc running directly --- dots/.config/quickshell/ii/modules/lock/LockContext.qml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/dots/.config/quickshell/ii/modules/lock/LockContext.qml b/dots/.config/quickshell/ii/modules/lock/LockContext.qml index 8b245237b..dcfd9a85d 100644 --- a/dots/.config/quickshell/ii/modules/lock/LockContext.qml +++ b/dots/.config/quickshell/ii/modules/lock/LockContext.qml @@ -2,7 +2,7 @@ import qs import qs.modules.common import QtQuick import Quickshell -import Quickshell.Io // Required for StdioCollector +import Quickshell.Io import Quickshell.Services.Pam Scope { @@ -22,10 +22,6 @@ Scope { property bool fingerprintsConfigured: false property var targetAction: LockContext.ActionEnum.Unlock - Component.onCompleted: { - fingerprintCheckProcess.running = true; - } - function resetTargetAction() { root.targetAction = LockContext.ActionEnum.Unlock; } @@ -77,7 +73,8 @@ Scope { } Process { - id: fingerprintCheckProcess + id: fingerprintCheckProc + running: true command: ["bash", "-c", "fprintd-list $(whoami)"] stdout: StdioCollector { id: fingerprintOutputCollector