7 lines
119 B
Bash
Executable File
7 lines
119 B
Bash
Executable File
#!/bin/sh
|
|
|
|
case $(cat $XDG_CACHE_HOME/yubikey.status) in
|
|
*_1) printf "touch the yubikey" ;;
|
|
*) printf "" ;;
|
|
esac
|