mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2024-11-19 09:50:19 +01:00
10 lines
231 B
Bash
Executable File
10 lines
231 B
Bash
Executable File
#!/bin/bash
|
|
# script for custom tmux status bar
|
|
|
|
if [ -f "/mnt/hdd/raspiblitz.conf" ]; then
|
|
source /mnt/hdd/raspiblitz.conf 2>/dev/null
|
|
echo " ${network} "
|
|
else
|
|
#echo "$configFile does not exist"
|
|
echo " unknown "
|
|
fi |