bat: quick fix for broken BAT/ACPI implementations

This commit is contained in:
Adrian C. (anrxc) 2009-10-15 21:36:24 +02:00
parent 64464efbd4
commit 2cfdd5aac7
1 changed files with 3 additions and 0 deletions

View File

@ -63,6 +63,9 @@ local function worker(format, batid)
-- Calculate percentage
local percent = math.floor(remaining / capacity * 100)
local percent = string.format("%02d", percent)
-- Work around broken batteries and/or ACPI implementations
if state == "" and tonumber(percent) > 100 then percent = 100 end
-- Calculate remaining (charging or discharging) time
if state == "+" then