Added option in case status is not working

This commit is contained in:
Oliver Kömm 2017-09-28 21:19:02 +02:00
parent 0871bb514c
commit a1252f33fd

View file

@ -2,11 +2,14 @@
white='\033[0;37m'
red='\033[0;31m'
green='\033[0;32m'
yellow='\033[0;33m'
nocolor='\033[0m'
status=$(curl -s http://status.schaffenburg.org)
if [ "$status" == "verriegelt" ]; then
status="${red}closed${nocolor}"
else
status="${green}open${nocolor}"
fi
if [ "$status" == "verriegelt" ]; then
status="${red}closed${nocolor}"
elif [ "$status" == "offen" ]; then
status="${green}open${nocolor}"
else
status="${yellow}not working${nocolor}"
fi
echo -e "${white}Spacestatus:${nocolor} $status"