Update battery.py
I'm not a major programmer but would this fix the issue that we had? Instead of going straight to BAT0 it would go to any BAT that exists? Correct me if I'm wrong.
This commit is contained in:
parent
d69f13f0b4
commit
ad330ad70e
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ class Module(bumblebee.engine.Module):
|
|||
else:
|
||||
self._batteries = [ "/sys/class/power_supply/{}".format(b) for b in self._batteries ]
|
||||
if len(self._batteries) == 0:
|
||||
self._batteries = [ "/sys/class/power_supply/BAT0" ]
|
||||
self._batteries = [ "/sys/class/power_supply/BAT*" ]
|
||||
self.update(widgets)
|
||||
|
||||
def update(self, widgets):
|
||||
|
|
Loading…
Reference in a new issue