In Battery Status was able to change the Temperature units with:
Code:
eips_print_bottom_centered "Temperature: $(gasgauge-info -k)°C ($(printf "%.*f" "2" "$(echo "$(gasgauge-info -k | awk '{print $1}')" | awk '{print ($1 * (9/5) + 32)}')") °F)" 1
However, gasgauge-info itself gives the values and units together, like "293 mAh".
I am not sure how to nicely truncate units, take only value, divide by 1000 and attach unit. Should be trivial, I'll give it a try