You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
470 B
22 lines
470 B
#!/bin/bash
|
|
|
|
# Basic Options
|
|
OPTIONS=(ZAP "Zap Wallet (iOS)" \
|
|
SHANGO "Shango Wallet (iOS/Android)")
|
|
|
|
CHOICE=$(dialog --clear --title "Choose Mobile Wallet" --menu "" 10 40 6 "${OPTIONS[@]}" 2>&1 >/dev/tty)
|
|
|
|
clear
|
|
case $CHOICE in
|
|
CLOSE)
|
|
exit 1;
|
|
;;
|
|
SHANGO)
|
|
./97addMobileWalletShango.sh
|
|
exit 1;
|
|
;;
|
|
ZAP)
|
|
./97addMobileWalletZap.sh
|
|
exit 1;
|
|
;;
|
|
esac
|