diff --git a/quickshell/Modules/Lock/Pam.qml b/quickshell/Modules/Lock/Pam.qml index 9f64ff45..7f79d476 100644 --- a/quickshell/Modules/Lock/Pam.qml +++ b/quickshell/Modules/Lock/Pam.qml @@ -88,9 +88,9 @@ Scope { } FileView { - id: loginConfigWatcher + id: u2fConfigWatcher - path: "/etc/pam.d/login" + path: "/etc/pam.d/dankshell-u2f" printErrors: false } @@ -98,7 +98,7 @@ Scope { id: passwd config: dankshellConfigWatcher.loaded ? "dankshell" : "login" - configDirectory: dankshellConfigWatcher.loaded || loginConfigWatcher.loaded ? "/etc/pam.d" : Quickshell.shellDir + "/assets/pam" + configDirectory: dankshellConfigWatcher.loaded ? "/etc/pam.d" : Quickshell.shellDir + "/assets/pam" onMessageChanged: { if (message.startsWith("The account is locked")) @@ -244,7 +244,7 @@ Scope { configDirectory: u2fConfigWatcher.loaded ? "/etc/pam.d" : Quickshell.shellDir + "/assets/pam" onMessageChanged: { - if (message !== "") + if (message.toLowerCase().includes("touch")) root.u2fState = "waiting"; }