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