1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-04-03 20:32:07 -04:00

fix: restore lock screen U2F/fingerprint auth to working state (#2052)

* fix: restore lock screen U2F/fingerprint auth to working state

* fix(pam): Keep SettingsData as single source of truth for auth availability
- Restores SettingsData for fingerprint/U2F, keeping lock screen and New Greeter Settings UI in sync

---------

Co-authored-by: purian23 <purian23@gmail.com>
This commit is contained in:
Patrick Fischer
2026-03-23 07:23:10 +08:00
committed by purian23
parent dd9851b4f0
commit 8180e30e8e

View File

@@ -88,9 +88,9 @@ Scope {
} }
FileView { FileView {
id: loginConfigWatcher id: u2fConfigWatcher
path: "/etc/pam.d/login" path: "/etc/pam.d/dankshell-u2f"
printErrors: false printErrors: false
} }
@@ -98,7 +98,7 @@ Scope {
id: passwd id: passwd
config: dankshellConfigWatcher.loaded ? "dankshell" : "login" 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: { onMessageChanged: {
if (message.startsWith("The account is locked")) if (message.startsWith("The account is locked"))
@@ -244,7 +244,7 @@ Scope {
configDirectory: u2fConfigWatcher.loaded ? "/etc/pam.d" : Quickshell.shellDir + "/assets/pam" configDirectory: u2fConfigWatcher.loaded ? "/etc/pam.d" : Quickshell.shellDir + "/assets/pam"
onMessageChanged: { onMessageChanged: {
if (message !== "") if (message.toLowerCase().includes("touch"))
root.u2fState = "waiting"; root.u2fState = "waiting";
} }