10 lines
206 B
Bash
10 lines
206 B
Bash
|
#!/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
|
||
|
}
|