blob: d98974c530c875876708d7477d19e8d16fd07c6f (
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/"
acpi | cut -d: -f 2- | sed "$str" | cut -d\ -f 1-2 | cut -d: -f 1-2;
|