LinuxMint fix fingerprint reader after sleep Thinkpad T480

I’ve noticed that my fingerprint reader stops working after laptop goes to sleep.

sudo nano /lib/systemd/system-sleep/fingerprint-reset

#!/bin/sh

case "$1" in
  post)
    systemctl restart python3-validity
    ;;
esac

sudo chmod +x /lib/systemd/system-sleep/fingerprint-reset

Now you can test suspend and running fprintd-verify in terminal will work.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.