Update menu-aprs

This commit is contained in:
RaspbianProyect by HP3ICC 2023-02-15 05:09:12 +00:00
parent 2b196af300
commit 6b67c53f0b
1 changed files with 9 additions and 12 deletions

View File

@ -3,12 +3,11 @@ sudo cat > /bin/menu-aprs <<- "EOF"
#!/bin/bash
while : ; do
choix=$(whiptail --title "Raspbian Proyect HP3ICC Menu APRS" --menu "Suba o Baje con las flechas del teclado y seleccione el numero de opcion:" 24 67 15 \
1 " APRS Direwolf Analogo" \
2 " APRS Direwolf RTL-SDR " \
3 " APRS Multimon-ng " \
4 " APRS Ionosphere " \
5 " Shell-APRS Beacon " \
6 " Salir del menu " 3>&1 1>&2 2>&3)
1 " APRS Direwolf " \
2 " APRS Multimon-ng " \
3 " APRS Ionosphere " \
4 " Shell-APRS Beacon " \
5 " Salir del menu " 3>&1 1>&2 2>&3)
exitstatus=$?
#on recupere ce choix
#exitstatus=$?
@ -20,16 +19,14 @@ fi
# case : action en fonction du choix
case $choix in
1)
menu-dw-analogo;;
menu-dw;;
2)
menu-dw-rtl;;
3)
menu-mm-rtl;;
4)
3)
menu-ionos;;
5)
4)
menu-bcon;;
6)
5)
break;
esac
done