main menu local ip

This commit is contained in:
Christian Rotzoll 2019-04-17 03:31:51 +01:00
parent 3fcf786d6c
commit 48ecfb614b
2 changed files with 3 additions and 3 deletions

View File

@ -11,6 +11,9 @@ infoFile="/home/admin/raspiblitz.info"
source ${infoFile}
source ${configFile}
# get the local network IP to be displayed on the lCD
localip=$(ip addr | grep 'state UP' -A2 | tail -n1 | awk '{print $2}' | cut -f1 -d'/')
# BASIC MENU INFO
HEIGHT=13
WIDTH=64

View File

@ -131,9 +131,6 @@ OPTIONS=()
# check if RTL web interface is installed
runningRTL=$(sudo ls /etc/systemd/system/RTL.service 2>/dev/null | grep -c 'RTL.service')
# get the local network IP to be displayed on the lCD
localip=$(ip addr | grep 'state UP' -A2 | tail -n1 | awk '{print $2}' | cut -f1 -d'/')
# function to use later
waitUntilChainNetworkIsReady()
{