Support one-digit charges in battery widget
This commit is contained in:
parent
fc44a84708
commit
dfe693ce4f
|
@ -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"
|
||||||
|
|
Loading…
Reference in New Issue