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