7 lines
179 B
Plaintext
7 lines
179 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
case $(cat $XDG_CACHE_HOME/yubikey.status) in
|
||
|
*_1) printf " <span foreground='#000000' background='#e8b923'> touch the yubikey</span>" ;;
|
||
|
*) printf "" ;;
|
||
|
esac
|