1
0
src/niceties/battery.linux

7 lines
170 B
Plaintext
Raw Permalink Normal View History

2022-08-13 14:29:04 -06:00
#!/bin/sh
# this is a dirty hack.
2023-11-19 20:49:46 -07:00
# acpi | awk '{print $4}' will print the battery percentage, stripping the
# trailing comma
acpi | awk '{sub(",$", "", $4); print $4}'