vicious: cleanup tabs and bad intendation

This commit is contained in:
Adrian C. (anrxc) 2011-08-18 20:44:04 +02:00
parent cf996f2ea3
commit 18e1823ded
2 changed files with 14 additions and 14 deletions

View File

@ -143,17 +143,17 @@ end
function register(widget, wtype, format, timer, warg)
local widget = widget
local reg = {
-- Set properties
wtype = wtype,
format = format,
timer = timer,
warg = warg,
widget = widget,
-- Set properties
wtype = wtype,
format = format,
timer = timer,
warg = warg,
widget = widget,
-- Update function
update = function ()
update(widget, reg)
end,
-- Update function
update = function ()
update(widget, reg)
end,
}
-- Default to 2s timer

View File

@ -47,15 +47,15 @@ local function worker(format)
local sysnet = helpers.pathtotable("/sys/class/net/" .. name)
args["{"..name.." carrier}"] = tonumber(sysnet.carrier) or 0
local now = os.time()
local now = os.time()
if nets[name] == nil then
-- Default values on the first run
nets[name] = {}
helpers.uformat(args, name .. " down", 0, unit)
helpers.uformat(args, name .. " up", 0, unit)
else -- Net stats are absolute, substract our last reading
local interval = now - nets[name].time
if interval < 0 then interval = 1 end
local interval = now - nets[name].time
if interval < 0 then interval = 1 end
local down = (recv - nets[name][1]) / interval
local up = (send - nets[name][2]) / interval
@ -64,7 +64,7 @@ local function worker(format)
helpers.uformat(args, name .. " up", up, unit)
end
nets[name].time = now
nets[name].time = now
-- Store totals
nets[name][1] = recv