9 lines
175 B
Bash
Executable File
9 lines
175 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# archypr:summary=Returns the battery percentage remaining as an integer.
|
|
|
|
upower -i $(upower -e | grep BAT) | awk '/percentage/ {
|
|
print int($2)
|
|
exit
|
|
}'
|