Add automatic hibernation on low battery

Signed-off-by: Marko Korhonen <marko.korhonen@reekynet.com>
This commit is contained in:
Marko Korhonen 2019-10-30 17:06:32 +02:00
parent 66cacdf161
commit 85041a9f92
No known key found for this signature in database
GPG key ID: 911B85FBC6003FE5
2 changed files with 6 additions and 0 deletions

View file

@ -95,6 +95,9 @@ dotfiles:
f_99-conbee-usb-serial.rules:
src: etc/udev/rules.d/99-conbee-usb-serial.rules
dst: /etc/udev/rules.d/99-conbee-usb-serial.rules
f_99-lowbat.rules:
src: etc/udev/rules.d/99-lowbat.rules
dst: /etc/udev/rules.d/99-lowbat.rules
profiles:
locale:
dotfiles:
@ -129,6 +132,7 @@ profiles:
- f_override.conf
- f_rc-manager.conf
- f_99-conbee-usb-serial.rules
- f_99-lowbat.rules
include:
- locale
- pacman

View file

@ -0,0 +1,2 @@
# Suspend the system when battery level drops to 5% or lower
SUBSYSTEM=="power_supply", ATTR{status}=="Discharging", ATTR{capacity}=="[0-5]", RUN+="/usr/bin/systemctl hibernate"