mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2024-11-19 01:40:16 +01:00
11 lines
233 B
Bash
Executable File
11 lines
233 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 " ${chain}net "
|
|
else
|
|
#echo "$configFile does not exist"
|
|
echo " unknown "
|
|
fi
|