11-25-2018, 03:56 PM
I finally have a workaround that displays the battery percentage and status in Conkyon my Pinebook.
I use the shell commands in script files:
#!/bin/sh
cat /sys/class/power_supply/battery/capacity
and
#!/bin/sh
cat /sys/class/power_supply/battery/status
and I just use two ${exec ./ } commands on a line in .conkyrc
It may not be elegant, but it works.
I use the shell commands in script files:
#!/bin/sh
cat /sys/class/power_supply/battery/capacity
and
#!/bin/sh
cat /sys/class/power_supply/battery/status
and I just use two ${exec ./ } commands on a line in .conkyrc
It may not be elegant, but it works.