mirror of
https://github.com/elkowar/dots-of-war.git
synced 2025-04-05 14:23:31 +00:00
10 lines
225 B
Bash
Executable file
10 lines
225 B
Bash
Executable file
#!/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}%"
|
|
|
|
|