Files
Nomarchy/bin/nomarchy-battery-remaining
Bernardo Magri 33deeb494b initial commit
2026-04-01 17:06:01 +01:00

10 lines
230 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 '/percentage/ {
print int($2)
exit
}'