blob: ef3997e7b91f3170bd608897256d8a6bf62dcd4f (
plain)
1
2
3
4
5
6
|
#!/usr/bin/env sh
# Quick hack to display battery levels for the laptop
str="s/ Charging, /C/;s/ Discharging, /D/;s/ Unknown,/U/;s/ Full, /F/"
acpi | cut -d: -f 2- | sed "$str" | cut -d\ -f 1-2 | cut -d: -f 1-2;
|