Files
scripts/batt_check/batt_check
2022-12-25 15:05:36 -05:00

3 lines
164 B
Bash
Executable File

#!/bin/bash
BATTINFO=$(acpi -b | grep Discharging || echo 100\%) && [[ $( echo "$BATTINFO" | grep -Eo '[[:digit:]]+%' | tr -d "\%") -lt 80 ]] && systemctl poweroff