blob: 7b0e3b30d947924e887079135c0d8aa341ac8ad4 (
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;
|