Support one-digit charges in battery widget

This commit is contained in:
Asger Hautop Drewsen 2018-03-21 14:07:20 +01:00 committed by GitHub
parent fc44a84708
commit dfe693ce4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ end
watch("acpi", 10, watch("acpi", 10,
function(widget, stdout, stderr, exitreason, exitcode) function(widget, stdout, stderr, exitreason, exitcode)
local batteryType 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) local charge = tonumber(charge_str)
if (charge >= 0 and charge < 15) then if (charge >= 0 and charge < 15) then
batteryType = "battery-empty%s-symbolic" batteryType = "battery-empty%s-symbolic"