raspiblitz/home.admin/_tmux_network.sh

13 lines
247 B
Bash
Raw Normal View History

2019-09-22 15:34:03 +02:00
#!/bin/bash
# script for custom tmux status bar
configFile="/mnt/hdd/raspiblitz.conf"
if [ -f "$configFile" ]; then
source ${configFile} 2>/dev/null
echo " ${network} "
else
#echo "$configFile does not exist"
echo " unknown "
fi