linuxShortcuts/Services/minecraft-hour.sh
Bruno Fontes 3a28251262
Including some dummy and messy scripts to Minecraft
Just a service to inform time and closer Minecraft
servers after some time, so kids are not going to
sleep so late.
2020-05-06 12:20:39 -03:00

24 lines
589 B
Bash
Executable File

if ! screen -list | grep -q "minecraftPE"; then
exit 1
fi
function runAllWorlds () {
screen -S minecraftPESurvival -X stuff "$1"
screen -S minecraftPECreative -X stuff "$1"
}
runAllWorlds "say $(date +%l:%M)\n"
HORA=$(date +%H)
if [ "$HORA" -ge 23 ]; then
screen -S minecraftPECreative -X stuff $'say Hora de dormir\n'
sleep 5
screen -S minecraftPECreative -X stuff $'stop\n'
if [ "$HORA" -ge 1 -a "$HORA" -lt 5 ]; then
screen -S minecraftPESurvival -X stuff $'say Hora de dormir\n'
source /home/bruno/Apps/Minecraft/stopServers.sh
fi
fi