Konstantin Koslowski
2765fdd6cf
style: add fontawesome as fallback mail: add tooltip with details mediaplayer: add tooltip card: add information about card
16 lines
343 B
Bash
Executable file
16 lines
343 B
Bash
Executable file
#!/bin/bash
|
|
|
|
CMD="/usr/bin/gpg --card-status"
|
|
|
|
|
|
text=""
|
|
tooltip=""
|
|
alt="missing"
|
|
ret=$($CMD 2> /dev/null)
|
|
if [ $? -eq 0 ]; then
|
|
tooltip="S/N: $(echo $ret | grep -oE 'Serial number[.:0-9 ]*' | grep -oE '[0-9]*')"
|
|
alt="available"
|
|
fi
|
|
|
|
json="{\"text\": \"$text\", \"tooltip\": \"$tooltip\", \"class\": \"card\", \"alt\": \"$alt\"}"
|
|
echo $json
|