low-battery-power-shutdown 226 B

123456789
  1. #!/bin/sh
  2. # script to shutdown the pc normally when running critical on battery
  3. percent=$(acpi -b | awk '{print($4)}'| tr -d '%,')
  4. [ "$percent" -lt 10 ]; && echo "hi"
  5. #if [ "$percent" -lt 10 ]; then
  6. #echo "$percent"
  7. #fi