Merge pull request #37 from Tyilo/patch-1
Support one-digit charges in battery widget
This commit is contained in:
commit
74f3d82bdd
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue