2019-10-26 20:05:31 +03:00
|
|
|
#!/bin/sh
|
|
|
|
acpi -b | awk -F'[,:%]' '{print $2, $3}' | {
|
2022-09-16 20:08:03 +03:00
|
|
|
read -r status capacity
|
2019-10-26 20:05:31 +03:00
|
|
|
|
2022-09-16 20:08:03 +03:00
|
|
|
if [ "$status" = Discharging -a "$capacity" -lt 5 ]; then
|
|
|
|
logger "Critical battery threshold"
|
|
|
|
systemctl hibernate
|
|
|
|
fi
|
2019-10-26 20:05:31 +03:00
|
|
|
}
|