Files
omarchy/bin/omarchy-battery-remaining
2025-10-23 13:40:18 -07:00

12 lines
224 B
Bash
Executable File

#!/bin/bash
# Returns the battery percentage remaining as an integer.
upower -i $(upower -e | grep BAT) \
| awk -F: '/percentage/ {
gsub(/[%[:space:]]/, "", $2);
val=$2;
printf("%d\n", (val+0.5))
exit
}'