[modules/battery] Better display for "unknown" charge status

Some laptops, such as Dells, may display an unknown charge state when
the battery is attached to a docking station, but discharging (because
of configuration settings for longevity of the battery).

Show that nicer.
This commit is contained in:
Tobias Witek 2018-11-09 18:19:05 +01:00
parent e5a003f961
commit 2994d0efa0
4 changed files with 17 additions and 3 deletions

View file

@ -109,7 +109,7 @@ class Module(bumblebee.engine.Module):
if charge == "Discharging":
state.append("discharging-{}".format(min([10, 25, 50, 80, 100], key=lambda i: abs(i-capacity))))
elif charge == "Unknown":
state.append("unknown")
state.append("unknown-{}".format(min([10, 25, 50, 80, 100], key=lambda i: abs(i-capacity))))
else:
if capacity > 95:
state.append("charged")