i3blocks-config/scripts/check_security_key
2024-04-26 15:09:23 -04:00

13 lines
263 B
Bash
Executable File

#!/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