aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/powersupply.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/plugins/powersupply.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/powersupply.py b/src/plugins/powersupply.py
index 525e906..014d851 100644
--- a/src/plugins/powersupply.py
+++ b/src/plugins/powersupply.py
@@ -129,6 +129,8 @@ class PowerSupply:
def get_capacity_level():
'''
TODO some information about what this is would be nice
+ Normal
+ Full
'''
if os.path.exists(self.path + '/capacity_level'):
with open(self.path + '/capacity_level', 'rb') as file:
@@ -218,7 +220,7 @@ class PowerSupply:
Get the current status
@return :str? The current status, known values are
- 'Charging', 'Discharging' and 'Unknown',
+ 'Full', 'Charging', 'Discharging' and 'Unknown',
`None` if unknown or if unapplicable
'''
if os.path.exists(self.path + '/status'):