1
0
mirror of https://github.com/km4ack/patmenu2.git synced 2025-05-16 06:40:10 -07:00

update ARDOP PTT choices

This commit is contained in:
KM4ACK 2022-02-24 16:10:10 -06:00
parent c04c4d1057
commit c5e329cb9f

View File

@ -279,11 +279,16 @@ CONFIG=$XDG_CONFIG_HOME/pat/config.json
WHO=$(whoami)
CURRENT=$(cat $CONFIG | grep ptt_ctrl | tail -1 | sed 's/"ptt_ctrl":\ //' | sed 's/,//' | tr -d "[:blank:]")
if [ $CURRENT = 'false' ]; then
CURRENT1="false|true"
elif [ $CURRENT = 'true' ]; then
CURRENT1="true|false"
fi
PTT=$(yad --form --width=400 --text="<b>Current Pat ARDOP PTT = $CURRENT</b>" --text-align=center --center --title="Set PTT" --text-align=center \
--separator="|" --item-separator="|" \
--image=$LOGO --window-icon=$LOGO --image-on-top \
--field="ARDOP PTT":CB "true|false" \
--field="ARDOP PTT":CB "$CURRENT1" \
--button="Set PTT":2 \
--button="Cancel":1)
QUIT=$?