mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-21 20:00:07 +00:00
fix: Fix the logic of displaying the remain time when battery is charged or charging.
This commit is contained in:
parent
bc0f9341da
commit
71d628cc8a
1 changed files with 2 additions and 3 deletions
|
@ -1495,12 +1495,11 @@ _p9k_prompt_battery_set_args() {
|
|||
state=DISCONNECTED
|
||||
fi
|
||||
;;
|
||||
'2'|'6'|'7'|'8'|'9'|'11')
|
||||
'2'|'6'|'7'|'8'|'9'|'11') # In this case, the battery is likely to be charged and disconnected, or still been charging.
|
||||
remain=''
|
||||
if (( bat_percent == 100 )); then
|
||||
remain=''
|
||||
state=CHARGED
|
||||
else
|
||||
(( bat_remain_minutes < 71582788 )) && remain=$((bat_remain_minutes/60)):${(l#2##0#)$((bat_remain_minutes%60))} || remain=''
|
||||
state=CHARGING
|
||||
fi
|
||||
;;
|
||||
|
|
Loading…
Reference in a new issue