mobile wallet update

This commit is contained in:
rootzoll 2018-08-31 20:52:29 +02:00
parent 5aa0de6959
commit 3f70411cab
2 changed files with 28 additions and 1 deletions

View File

@ -214,7 +214,7 @@ case $CHOICE in
./00mainMenu.sh
;;
MOBILE)
sudo ./97addMobileWalletShango.sh
sudo ./97addMobileWallet.sh
echo "Press ENTER to return to main menu."
read key
./00mainMenu.sh

View File

@ -0,0 +1,27 @@
#!/bin/bash
# Basic Options
OPTIONS=(ZAP "Zap Wallet (iOS)" \
SHANGO "Shango Wallet (iOS)")
CHOICE=$(dialog --clear \
--title "Choose Mobile Wallet" \
--menu "MENU" \
8 40 2 \
"${OPTIONS[@]}" \
2>&1 >/dev/tty)
clear
case $CHOICE in
CLOSE)
exit 1;
;;
SHANGO)
./97addMobileWalletShango.sh
exit 1;
;;
ZAP)
./97addMobileWalletZap.sh
exit 1;
;;
esac