aboutsummaryrefslogtreecommitdiff
path: root/bat.lua
diff options
context:
space:
mode:
authorAdrian C. (anrxc) <anrxc@sysphere.org>2009-07-30 20:47:02 +0200
committerAdrian C. (anrxc) <anrxc@sysphere.org>2009-07-30 20:47:02 +0200
commitbc637062d7518988884c36762d3d257c1c8d0aad (patch)
tree89b04c4668eb6219ce209a20ecfd3f3cb95b5af8 /bat.lua
parent052748a2cb671b5b9e85c4e4aefb76a58e88a520 (diff)
downloadvicious-legacy-bc637062d7518988884c36762d3d257c1c8d0aad.tar.xz
Coding style fixes in battery widgets.
Diffstat (limited to 'bat.lua')
-rw-r--r--bat.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/bat.lua b/bat.lua
index 143cd24..5ea4b8d 100644
--- a/bat.lua
+++ b/bat.lua
@@ -37,7 +37,7 @@ function worker(format, batid)
-- Check if the file wasn't found or the battery isn't present
if infofile == nil or string.find(infofile, "present:[%s]+no") then
- return { "/", "/", "/" }
+ return {"/", "/", "/"}
else
-- Get capacity information
local capacity = string.match(infofile, "last full capacity:[%s]+([%d]+).*")
@@ -73,7 +73,7 @@ function worker(format, batid)
local minutesleft = math.floor((timeleft - hoursleft) * 60 )
local time = string.format("%02d:%02d", hoursleft, minutesleft)
- return { state, percent, time }
+ return {state, percent, time}
end
end
-- }}}