10 lines
163 B
Plaintext
10 lines
163 B
Plaintext
|
#!/system/bin/sh
|
||
|
|
||
|
if [ "$#" != "0" ]; then
|
||
|
echo "usage: termux-battery-status"
|
||
|
echo "Get the status of the device battery."
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
termux-api BatteryStatus
|