blob: 4bd6ddb6ee857164dcfaade3c5d97dc60a7e6a44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
post_install() {
echo "Thank you for installing auto_facelock."
echo
echo "To enroll your face, run:"
echo " sudo auto_facelock_enroll.py"
echo
echo "To enable and start the service, run:"
echo " sudo systemctl enable auto_facelock@\$(whoami).service"
echo " sudo systemctl start auto_facelock@\$(whoami).service"
echo
echo "Note: If you are running these commands as a different user, replace \$(whoami) with your actual username."
}
|