csgo-start-script/csgo-status

35 lines
780 B
Plaintext
Raw Permalink Normal View History

#!/bin/bash
2021-01-07 18:06:35 +01:00
# ×===========================================×
# | based on bukkit-status by Elias Schriefer |
# ×===========================================×
if [ "$1" = "-h" ]
then
echo "bukkit-status [option]"
echo
echo "Options:"
echo " -h Show help"
exit 0
fi
# Is there a window with name "csgo" already running in screen?
# We don't need your fukcing text, ew...
sudo -u steam screen -ls csgo > /dev/null
if [ $? -eq 0 ]
then
# If the screen window is indeed running, shout it in my
# face, I wanna know...
echo running
# Now gimme my suxesvul eksit koud...
true
else
# If the screen window is not running, shout that in my
# face, too, I wanna know...
echo stopped
# Gimme my unsuxesvul eksid koud...
false
fi
# and eksit wif that eksid koud
exit $?