mirror of
https://github.com/brunofontes/linuxShortcuts.git
synced 2024-11-23 23:40:51 +00:00
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:
parent
626faf6ce2
commit
3a28251262
6
Services/minecraft-hour.service
Executable file
6
Services/minecraft-hour.service
Executable 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
23
Services/minecraft-hour.sh
Executable 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
12
Services/minecraft-hour.timer
Executable 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
|
Loading…
Reference in New Issue
Block a user