dotfiles/scripts/hibernate-lowbattery.sh
2020-11-25 10:06:19 +02:00

9 lines
206 B
Bash
Executable file

#!/bin/sh
acpi -b | awk -F'[,:%]' '{print $2, $3}' | {
read -r status capacity
if [ "$status" = Discharging -a "$capacity" -lt 5 ]; then
logger "Critical battery threshold"
systemctl hibernate
fi
}