mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-02 04:37:49 +02:00
9 lines
175 B
Bash
Executable File
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
|
|
}'
|