mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-24 14:51:03 +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
|
||||
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")
|
||||
|
|
Loading…
Add table
Reference in a new issue