diff --git a/home.admin/00mainMenu.sh b/home.admin/00mainMenu.sh index 5da180d3c..55aa214b9 100755 --- a/home.admin/00mainMenu.sh +++ b/home.admin/00mainMenu.sh @@ -66,7 +66,10 @@ if [ ${#lightning} -gt 0 ]; then fi BACKTITLE="${localip} / ${hostname} / ${network} ${plus}" -# Put Activated Apps on top +# Basic Options +OPTIONS+=(INFO "RaspiBlitz Status Screen") + +# Activated Apps/Services if [ "${rtlWebinterface}" == "on" ]; then OPTIONS+=(LRTL "LND RTL Webinterface") fi @@ -134,18 +137,11 @@ if [ "${circuitbreaker}" == "on" ]; then OPTIONS+=(CIRCUIT "Circuitbreaker (LND firewall)") fi -if [ "${testnet}" == "on" ]; then - OPTIONS+=(TESTNETS "Testnet/Signet Options") -fi - # dont offer to switch to "testnet view for now" - so no wswitch back to mainnet needed #if [ ${chain} != "main" ]; then # OPTIONS+=(MAINNET "Mainnet Service Options") #fi -# Basic Options -OPTIONS+=(INFO "RaspiBlitz Status Screen") - # if LND is active if [ "${lightning}" == "lnd" ] || [ "${lnd}" == "on" ]; then OPTIONS+=(LND "LND Wallet Options") @@ -156,6 +152,10 @@ if [ "${lightning}" == "cln" ] || [ "${cln}" == "on" ]; then OPTIONS+=(CLN "C-lightning Wallet Options") fi +if [ "${testnet}" == "on" ]; then + OPTIONS+=(TESTNETS "Testnet/Signet Options") +fi + OPTIONS+=(SETTINGS "Node Settings & Options") OPTIONS+=(SERVICES "Additional Apps & Services") OPTIONS+=(SYSTEM "Monitoring & Configuration")