diff --git a/README.md b/README.md index 59d660c5d..2020c6c73 100644 --- a/README.md +++ b/README.md @@ -750,12 +750,12 @@ This feature should support connecting your RaspiBlitz to a mobile wallets or ot ##### MOBILE: Mobile Wallet Apps (Smartphone) -At the moment, the following mobile wallets are supported: +At the moment, the following mobile wallets are supported - some are just available if LND or c-lightning is activated: -* [Zeus (iOS/Android)](https://github.com/ZeusLN/zeus) +* [Zeus (iOS/Android)](https://github.com/ZeusLN/zeus) (LND & c-lightning) * [Fully Noded (iOS over Tor)](https://apps.apple.com/us/app/fully-noded/id1436425586) -* [SendMany (Android)](https://github.com/fusion44/sendmany/blob/master/README.md) -* [Sphinx Chat App (iOS/Android)](https://sphinx.chat/) +* [SendMany (Android)](https://github.com/fusion44/sendmany/blob/master/README.md) (only LND) +* [Sphinx Chat App (iOS/Android)](https://sphinx.chat/) (only LND) Mobile wallets work as a remote control app for your RaspiBlitz. First you need to install the apps on your phone - a QR code with the links to the app stores are displayed. Then you need to `pair` them with your RaspiBlitz - also via a QR code displayed on the LCD. If you run your RaspiBlitz without an LCD, there is the fallback option to display that QR code on the terminal as ASCII code (which might involve lowering your terminal's font size). diff --git a/home.admin/97addMobileWallet.sh b/home.admin/97addMobileWallet.sh index 8797c5094..479509475 100755 --- a/home.admin/97addMobileWallet.sh +++ b/home.admin/97addMobileWallet.sh @@ -141,25 +141,20 @@ checkIP2TOR() fi } -if [ $lightning = "lnd" ]; then - # Also Zap-Android deactivated for now - see: https://github.com/rootzoll/raspiblitz/issues/2198#issuecomment-822808428 - #OPTIONS=(ZAP_ANDROID "Zap Wallet (Android)" \ - # ZAP_IOS "Zap Wallet (iOS)" \ - OPTIONS=(ZEUS_IOS "Zeus Wallet (iOS)" \ - ZEUS_ANDROID "Zeus Wallet (Android)" \ - SPHINX "Sphinx Chat (Android or iOS)" - ) - - # add SEND MANY APP - OPTIONS+=(SENDMANY_ANDROID "SendMany (Android)") +OPTIONS=() -elif [ $lightning = "cl" ]; then - - OPTIONS=(ZEUS_CLREST "Zeus to C-lightningREST (Android or iOS)" \ - ZEUS_SPARK "Zeus to Sparko (Android or iOS)" \ - SPARK "Spark Wallet to Sparko (Android - EXPERIMENTAL)" - ) +if [ "${lightning}" == "lnd" ] || [ "${lnd}" == "on" ]; then + # Zap deactivated for now - see: https://github.com/rootzoll/raspiblitz/issues/2198#issuecomment-822808428 + OPTIONS+=(ZEUS_IOS "Zeus Wallet (iOS)") + OPTIONS+=(ZEUS_ANDROID "Zeus Wallet (Android)") + OPTIONS+=(SPHINX "Sphinx Chat (Android or iOS)") + OPTIONS+=(SENDMANY_ANDROID "SendMany (Android)") +fi +if [ "${lightning}" == "cl" ] || [ "${cl}" == "on" ]; then + OPTIONS+=(ZEUS_CLREST "Zeus to C-lightningREST (Android or iOS)") + OPTIONS+=(ZEUS_SPARK "Zeus to Sparko (Android or iOS)") + OPTIONS+=(SPARK "Spark Wallet to Sparko (Android - EXPERIMENTAL)" ) fi # Additional Options with Tor