7 lines
179 B
Bash
Executable File
7 lines
179 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
|