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

32 lines
445 B
Bash
Raw Normal View History

2021-02-04 17:44:55 +01:00
#!/bin/bash -x
# 1: Temps en minutes
# 2: Type dextinction
2022-04-15 13:05:19 +02:00
touch /dev/shm/mccount
2021-02-04 17:44:55 +01:00
while true
do
2022-08-20 20:23:03 +02:00
mcpid="$(pgrep -nu minecraft java)"
mcstatus="$(ps -q "${mcpid}" -o state --no-headers 2>/dev/null)"
2021-02-04 17:44:55 +01:00
if [[ "$mcstatus" == "T" ]]
then
echo . >> /dev/shm/mccount
else
2022-08-20 20:23:03 +02:00
> /dev/shm/mccount
2021-02-04 17:44:55 +01:00
fi
time=$(wc -l /dev/shm/mccount | cut -d" " -f1)
if [[ "$time" -ge "${1:-5}" ]]
then
> /dev/shm/mccount
systemctl "${2:-suspend}"
fi
sleep 60
done