mirror of
https://github.com/Horhik/dotfiles.git
synced 2024-11-08 01:43:13 +00:00
6 lines
171 B
Bash
6 lines
171 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
for i in /sys/class/power_supply/sony_controller_battery_*/capacity; do
|
||
|
echo "# $(cat /sys/class/power_supply/sony_controller_battery_"$i"/capacity)%"
|
||
|
done
|