This commit is contained in:
2024-02-08 18:36:37 -05:00
parent 9ec09f9238
commit 2ca5c136da
9 changed files with 318 additions and 26 deletions

12
scripts/check_security_key Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/sh
msg_connected="✓ Security key connected"
msg_disconnected="𐄂 Security key not connected\n"
lsusb | grep Lexar > /dev/null
if [ "$?" == 0 ]; then
printf "[✓] Security key connected.\n"
else
printf "[𐄂] Security key disconnected.\n"
fi