mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2024-11-19 18:00:22 +01:00
13 lines
248 B
Bash
Executable File
13 lines
248 B
Bash
Executable File
#!/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
|