More options for battery info text

Thought it would be a good idea to add a time remaining on battery before it dies in the battery info text options

This already exists, bi(fullempty), from formula examples:

Time to next expected charged/discharged event

$if(bi(charging) = 0, discharged, charged)$ $tf(bi(fullempty))$

It just says, “Discharge Moments Ago”. No time estimate what so ever. OneUI 8.5

Hi @Edward_Ludwig,

The “Discharge Moments Ago” message means that it’s less than a minute. It will display differently when more than a minute.

Alternatively, you can use the following code snippet for displaying the charging/discharging time as you need.

$if(bi(charging)=0,Discharged,Full)$$if(bi(charging)=0|bi(level)<100," in "+tf(bi(fullempty)-dp(),"hh:mm"))$

I hope this would help.

:smiling_face::+1: