mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-24 14:51:03 +01:00
13 lines
248 B
Bash
13 lines
248 B
Bash
|
#!/bin/bash
|
||
|
# script for custom tmux status bar
|
||
|
|
||
|
configFile="/mnt/hdd/raspiblitz.conf"
|
||
|
|
||
|
if [ -f "$configFile" ]; then
|
||
|
source ${configFile} 2>/dev/null
|
||
|
echo " ${chain}net "
|
||
|
else
|
||
|
#echo "$configFile does not exist"
|
||
|
echo " unknown "
|
||
|
fi
|