mirror of
https://git.korhonen.cc/FunctionalHacker/dotfiles.git
synced 2024-11-01 03:20:29 +00:00
10 lines
206 B
Bash
Executable File
10 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
|
|
}
|