summaryrefslogtreecommitdiff
path: root/battery-widget
diff options
context:
space:
mode:
authorstreetturtle <streetturtle@users.noreply.github.com>2022-04-15 17:11:31 -0400
committerGitHub <noreply@github.com>2022-04-15 17:11:31 -0400
commit6ab940db5ced716689cb7e980e67efcc44e733ea (patch)
treefd4b018b3c7384614c2fc974df16f7c297f7b1a9 /battery-widget
parentb8e3a861f4829b2c3820e9a40294a3d9125fbf23 (diff)
parent51ddb1efba57b4c41addd3a00b87bce2c2443741 (diff)
Merge pull request #338 from andreaslongo/issue-209
Fix #209: Match space characters in battery status string
Diffstat (limited to 'battery-widget')
-rw-r--r--battery-widget/battery.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/battery-widget/battery.lua b/battery-widget/battery.lua
index f7f76b5..452d7ef 100644
--- a/battery-widget/battery.lua
+++ b/battery-widget/battery.lua
@@ -125,7 +125,7 @@ local function worker(user_args)
local battery_info = {}
local capacities = {}
for s in stdout:gmatch("[^\r\n]+") do
- local status, charge_str, _ = string.match(s, '.+: (%a+), (%d?%d?%d)%%,?(.*)')
+ local status, charge_str, _ = string.match(s, '.+: ([%a%s]+), (%d?%d?%d)%%,?(.*)')
if status ~= nil then
table.insert(battery_info, {status = status, charge = tonumber(charge_str)})
else