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.
This commit is contained in:
Bruno F. Fontes 2020-05-06 12:20:39 -03:00
parent 626faf6ce2
commit 3a28251262
Signed by: brunofontes
GPG Key ID: EE3447CE80048495
3 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,6 @@
[Unit]
Description=Minecraft Informa a Hora Certa
[Service]
User=bruno
ExecStart=/bin/sh /home/bruno/Apps/linuxShortcuts/Services/minecraft-hour.sh

23
Services/minecraft-hour.sh Executable file
View File

@ -0,0 +1,23 @@
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

12
Services/minecraft-hour.timer Executable file
View File

@ -0,0 +1,12 @@
[Unit]
Description=Minecraft Informa a Hora Certa
Requires=minecraft-hour.service
[Timer]
Unit=minecraft-hour.service
OnCalendar=*-*-* *:0,15,30,45:00
#DayOfWeek Year-Month-Day Hour:Minute:Second
AccuracySec=1s
[Install]
WantedBy=timers.target