mirror of
https://github.com/raspiblitz/raspiblitz.git
synced 2025-09-26 11:37:19 +02:00
move LND & CL sub menus up in main menu
This commit is contained in:
@@ -69,6 +69,16 @@ BACKTITLE="${localip} / ${hostname} / ${network} ${plus}"
|
||||
# Basic Options
|
||||
OPTIONS+=(INFO "RaspiBlitz Status Screen")
|
||||
|
||||
# if LND is active
|
||||
if [ "${lightning}" == "lnd" ] || [ "${lnd}" == "on" ]; then
|
||||
OPTIONS+=(LND "LND Wallet Options")
|
||||
fi
|
||||
|
||||
# if C-Lightning is active
|
||||
if [ "${lightning}" == "cl" ] || [ "${cl}" == "on" ]; then
|
||||
OPTIONS+=(CL "C-lightning Wallet Options")
|
||||
fi
|
||||
|
||||
# Activated Apps/Services
|
||||
if [ "${rtlWebinterface}" == "on" ]; then
|
||||
OPTIONS+=(LRTL "LND RTL Webinterface")
|
||||
@@ -142,16 +152,6 @@ fi
|
||||
# OPTIONS+=(MAINNET "Mainnet Service Options")
|
||||
#fi
|
||||
|
||||
# if LND is active
|
||||
if [ "${lightning}" == "lnd" ] || [ "${lnd}" == "on" ]; then
|
||||
OPTIONS+=(LND "LND Wallet Options")
|
||||
fi
|
||||
|
||||
# if C-Lightning is active
|
||||
if [ "${lightning}" == "cl" ] || [ "${cl}" == "on" ]; then
|
||||
OPTIONS+=(CL "C-lightning Wallet Options")
|
||||
fi
|
||||
|
||||
if [ "${testnet}" == "on" ]; then
|
||||
OPTIONS+=(TESTNETS "Testnet/Signet Options")
|
||||
fi
|
||||
|
Reference in New Issue
Block a user