Jackaed

Results 72 comments of Jackaed

Okay, after a lot of meddling, this now works with Qt6 everything (at least on my system, please test independently).

Here is dolphin qt5 and qt6 both being themed correctly under my branch, side by side. Qt6 on the left, Qt5 on the right. ![image](https://github.com/user-attachments/assets/b1b14842-e879-4e79-8fa7-00151edc891a) Same goes for okular: ![image](https://github.com/user-attachments/assets/b14d624e-c6fa-4b04-a9dc-eb42c7aae8c3)

> EDIT: wow even the icons are magically fixed. did you do something about it? Yeah icons were a pain in the arse, installing `kdePackages.full` fixed them (note this doesn't...

`pam-fprint-grosshack` is called that for a reason - PAM is strictly a serial authentication mechanism. The correct way of doing parallel authentication is through two PAM sessions.

This kinda works ish? It's pretty prone to causing just a dangling `fprintd-verify`, say if you authenticate with a password instead, which will make your fingerprint sensor unusable until you...

Oh I just realised, this code REALLY doesn't work, since fprintd-verify still returns on a no-match, just with different output.

No but that until loop still breaks if an incorrect finger is used, as fprint still returns with a non-zero exit code. You can fix it by adding `| grep...

My fprintd doesn't behave this way - I get an exit code of 0 on a match or on a non-match. Not sure why this is different on my machine....

@discapes I think it's more or less working as intended now - I'm now using the script with the modifications for my distro (specifically adding the grep) and it seems...

Currently using what I've modified from what @discapes sent ```sh #!/bin/sh set -euo pipefail if [ -f /tmp/locked ] ; then exit ; fi touch /tmp/locked ( until fprintd-verify |...