mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-24 22:58:43 +01:00
move INFO to top
This commit is contained in:
parent
45fd101836
commit
97af2c7f3c
1 changed files with 8 additions and 8 deletions
|
@ -66,7 +66,10 @@ if [ ${#lightning} -gt 0 ]; then
|
||||||
fi
|
fi
|
||||||
BACKTITLE="${localip} / ${hostname} / ${network} ${plus}"
|
BACKTITLE="${localip} / ${hostname} / ${network} ${plus}"
|
||||||
|
|
||||||
# Put Activated Apps on top
|
# Basic Options
|
||||||
|
OPTIONS+=(INFO "RaspiBlitz Status Screen")
|
||||||
|
|
||||||
|
# Activated Apps/Services
|
||||||
if [ "${rtlWebinterface}" == "on" ]; then
|
if [ "${rtlWebinterface}" == "on" ]; then
|
||||||
OPTIONS+=(LRTL "LND RTL Webinterface")
|
OPTIONS+=(LRTL "LND RTL Webinterface")
|
||||||
fi
|
fi
|
||||||
|
@ -134,18 +137,11 @@ if [ "${circuitbreaker}" == "on" ]; then
|
||||||
OPTIONS+=(CIRCUIT "Circuitbreaker (LND firewall)")
|
OPTIONS+=(CIRCUIT "Circuitbreaker (LND firewall)")
|
||||||
fi
|
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
|
# dont offer to switch to "testnet view for now" - so no wswitch back to mainnet needed
|
||||||
#if [ ${chain} != "main" ]; then
|
#if [ ${chain} != "main" ]; then
|
||||||
# OPTIONS+=(MAINNET "Mainnet Service Options")
|
# OPTIONS+=(MAINNET "Mainnet Service Options")
|
||||||
#fi
|
#fi
|
||||||
|
|
||||||
# Basic Options
|
|
||||||
OPTIONS+=(INFO "RaspiBlitz Status Screen")
|
|
||||||
|
|
||||||
# if LND is active
|
# if LND is active
|
||||||
if [ "${lightning}" == "lnd" ] || [ "${lnd}" == "on" ]; then
|
if [ "${lightning}" == "lnd" ] || [ "${lnd}" == "on" ]; then
|
||||||
OPTIONS+=(LND "LND Wallet Options")
|
OPTIONS+=(LND "LND Wallet Options")
|
||||||
|
@ -156,6 +152,10 @@ if [ "${lightning}" == "cln" ] || [ "${cln}" == "on" ]; then
|
||||||
OPTIONS+=(CLN "C-lightning Wallet Options")
|
OPTIONS+=(CLN "C-lightning Wallet Options")
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ "${testnet}" == "on" ]; then
|
||||||
|
OPTIONS+=(TESTNETS "Testnet/Signet Options")
|
||||||
|
fi
|
||||||
|
|
||||||
OPTIONS+=(SETTINGS "Node Settings & Options")
|
OPTIONS+=(SETTINGS "Node Settings & Options")
|
||||||
OPTIONS+=(SERVICES "Additional Apps & Services")
|
OPTIONS+=(SERVICES "Additional Apps & Services")
|
||||||
OPTIONS+=(SYSTEM "Monitoring & Configuration")
|
OPTIONS+=(SYSTEM "Monitoring & Configuration")
|
||||||
|
|
Loading…
Add table
Reference in a new issue