basecamp_omarchy/bin/omarchy-battery-remaining
2026-01-05 10:17:32 +01:00

13 lines
295 B
Bash
Executable File

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