ThierryHFR / Big-Sur-StatusArea

macOS Big Sur "System Tray" look for Gnome Desktop
https://www.pling.com/p/1427290/
26 stars 4 forks source link

Battery Indiciator is showing xx.00% #73

Closed jonasIam closed 2 years ago

jonasIam commented 2 years ago

Hello, since a few days my laptop shows me the battery charge level with two 00´s. Since I do not need this information, I wanted to ask if anyone has an idea where this comes from or how to get rid of it.

Would be happy about an answer :)

Bildschirmfoto vom 2022-03-05 17-59-00

hyuri commented 2 years ago

Same for me.

System Info:

ThierryHFR commented 2 years ago

Hi @jonasIam and @hyuri, I take care of the gnome-shel l 42.0 compatibility and at the same time I will correct it! In the file indicators/power.js line 80 replace this line:

this._percentageLabel.clutter_text.set_markup('<span size="smaller">' + this._power._proxy.Percentage.toFixed(2) + " %</span>");

with this one:

this._percentageLabel.clutter_text.set_markup('<span size="smaller">' + Math.round(this._power._proxy.Percentage) + " %</span>");
jonasIam commented 2 years ago

This worked wonderfully! Thank you very much!

Glad to hear the extension is coming to gnome 42 :)

hyuri commented 2 years ago

Worked perfectly. Thank you!