dotfiles/.local/bin/auto-poweroff.sh

45 lines
655 B
Bash
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
# 1: Temps en minutes
# 2: Type dextinction
#reset-dpms() {
# xset dpms 600 600 600
# exit
#}
trap 'exit' INT TERM
touch /dev/shm/mccount
#xset dpms 10 10 10
#xset dpms force standby
while true
do
mcpid="$(pgrep -nu minecraft java)"
mcstatus="$(ps -q "${mcpid}" -o state --no-headers 2>/dev/null)"
if [[ "$mcstatus" == "T" ]]
then
echo . >> /dev/shm/mccount
else
echo "Joueur(s) connecté(s), réinitialisation du compteur"
> /dev/shm/mccount
fi
time=$(wc -l /dev/shm/mccount | cut -d" " -f1)
echo "$time"/"${1:-5}"
if [[ "$time" -ge "${1:-5}" ]]
then
> /dev/shm/mccount
systemctl "${2:-suspend}"
fi
sleepcount -c 60
done