mirror of
https://github.com/km4ack/pi-build
synced 2026-08-13 17:52:14 -04:00
22 lines
212 B
Bash
Executable file
22 lines
212 B
Bash
Executable file
#!/bin/bash
|
|
|
|
#get VFO of radio to display in conky
|
|
#20200428
|
|
|
|
source "$HOME/patmenu2/config"
|
|
|
|
MAIN () {
|
|
|
|
VFO=$($RIG v)
|
|
VFOCH=$(echo "$VFO" | grep error)
|
|
|
|
if [ -z "$VFOCH" ]
|
|
then
|
|
echo "$VFO"
|
|
else
|
|
MAIN
|
|
fi
|
|
|
|
}
|
|
|
|
MAIN
|