Add battery-monitor alias

This commit is contained in:
David Holland 2020-10-30 13:35:51 +01:00
parent 3698682b85
commit 2b630ca4de
Signed by: DustVoice
GPG Key ID: 47068995A14EDCA9
1 changed files with 6 additions and 0 deletions

View File

@ -106,6 +106,12 @@ function check-iommu-func() {
}
alias check-iommu='check-iommu-func'
function battery-monitor-func() {
watch -t -n 60 '( if [ $(cat /sys/class/power_supply/ACAD/online) == "1" ]; then printf "Power connected\n"; else print "Power disconnected\n"; fi; printf "\nBattery capacity: "; cat /sys/class/power_supply/BAT1/capacity; printf "\n(Updated every 60s)"; )';
}
alias battery-monitor='battery-monitor-func'
# ===
# ===