mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-12-26 14:12:23 +00:00
9 lines
223 B
Bash
9 lines
223 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
#output="$(upower -i /org/freedesktop/UPower/devices/battery_BAT1)"
|
||
|
percentage="$(cat /sys/class/power_supply/BAT1/capacity)"
|
||
|
status="$(cat /sys/class/power_supply/BAT1/status)"
|
||
|
|
||
|
|
||
|
echo "${percentage}%"
|