Files
arthur-os/bin/omarchy-battery-remaining
2026-04-28 12:03:46 -04:00

9 lines
175 B
Bash
Executable File

#!/bin/bash
# omarchy:summary=Returns the battery percentage remaining as an integer.
upower -i $(upower -e | grep BAT) | awk '/percentage/ {
print int($2)
exit
}'