diff options
author | Asger Hautop Drewsen <asgerdrewsen@gmail.com> | 2018-03-21 14:07:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-21 14:07:20 +0100 |
commit | dfe693ce4f369eefd951119b463c8fcccf5ae119 (patch) | |
tree | d168e7212bfd56fe4d35585fc0cc4def99ffcb70 | |
parent | fc44a84708c2ba44d7d30eb9907365d351039b86 (diff) |
Support one-digit charges in battery widget
-rw-r--r-- | battery-widget/battery.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/battery-widget/battery.lua b/battery-widget/battery.lua index badbc8f..01a3ddd 100644 --- a/battery-widget/battery.lua +++ b/battery-widget/battery.lua @@ -70,7 +70,7 @@ end watch("acpi", 10, function(widget, stdout, stderr, exitreason, exitcode) local batteryType - local _, status, charge_str, time = string.match(stdout, '(.+): (%a+), (%d?%d%d)%%,? ?.*') + local _, status, charge_str, time = string.match(stdout, '(.+): (%a+), (%d?%d?%d)%%,? ?.*') local charge = tonumber(charge_str) if (charge >= 0 and charge < 15) then batteryType = "battery-empty%s-symbolic" |