aboutsummaryrefslogtreecommitdiff
path: root/net.lua
diff options
context:
space:
mode:
authorAdrian C. (anrxc) <anrxc@sysphere.org>2009-09-14 17:25:23 +0200
committerAdrian C. (anrxc) <anrxc@sysphere.org>2009-09-14 17:25:23 +0200
commit2a5126f4f0c0a3e073becb98f49499363072643d (patch)
treecd9e79c76420d01c94544ce039a6a73eb667e4e5 /net.lua
parent4f3599db00b3a55a0ff6e52530bdad282e97f8f3 (diff)
downloadvicious-legacy-2a5126f4f0c0a3e073becb98f49499363072643d.tar.xz
General cleanup
Diffstat (limited to 'net.lua')
-rw-r--r--net.lua3
1 files changed, 1 insertions, 2 deletions
diff --git a/net.lua b/net.lua
index 6ddd25d..068459e 100644
--- a/net.lua
+++ b/net.lua
@@ -25,7 +25,6 @@ local function worker(format)
local f = io.open("/proc/net/dev")
local args = {}
- -- Format data
for line in f:lines() do
-- Match wmaster0 as well as rt0 (multiple leading spaces)
if line:match("^[%s]?[%s]?[%s]?[%s]?[%w]+:") then
@@ -48,7 +47,7 @@ local function worker(format)
args["{"..name.." tx_gb}"] = math.floor(send/1024/1024/1024*10)/10
if nets[name] == nil then
- -- Default values on our first run
+ -- Default values on the first run
nets[name] = {}
args["{"..name.." down}"] = "n/a"
args["{"..name.." up}"] = "n/a"