slock

My slock fork
git clone https://git.kausban.com/slock/raw/.git
Log | Files | Refs | README

README.md (576B)


      1 # My fork of slock
      2 
      3 Includes patches for:
      4 
      5 1. pam - https://tools.suckless.org/slock/patches/pam_auth/
      6 2. messages - https://tools.suckless.org/slock/patches/pam_auth/
      7 
      8 # pam hints
      9 
     10 - Set user and group  in config.h to something that can use pam ($USER or root)
     11 - For fingerprint add: ``auth      sufficient pam_fprintd.so`` to ``/etc/pam.d/system-local-login``
     12 
     13 The following is nice in ``/etc/pam.d/sudo``. Allows to use password or fingerprint
     14 
     15 ```
     16 auth required    pam_env.so
     17 auth sufficient  pam_unix.so try_first_pass likeauth nullok
     18 auth sufficient  pam_fprintd.so
     19 ```