aboutsummaryrefslogtreecommitdiff
path: root/widgets/cpu.lua
diff options
context:
space:
mode:
authorAdrian C. (anrxc) <anrxc@sysphere.org>2012-06-18 01:30:26 +0200
committerAdrian C. (anrxc) <anrxc@sysphere.org>2012-06-18 01:31:42 +0200
commite929bea270875c8fa831747bd3ee3090561f2113 (patch)
tree3fccf7766480d6c0ce1d9405634170aa032e016a /widgets/cpu.lua
parent363c03e79c334cc0f3d75c1a3b60edbca0214465 (diff)
downloadvicious-legacy-e929bea270875c8fa831747bd3ee3090561f2113.tar.xz
widgets: cleanup behind the last commit 363c03e
Diffstat (limited to 'widgets/cpu.lua')
-rw-r--r--widgets/cpu.lua7
1 files changed, 3 insertions, 4 deletions
diff --git a/widgets/cpu.lua b/widgets/cpu.lua
index 125db96..fe6754a 100644
--- a/widgets/cpu.lua
+++ b/widgets/cpu.lua
@@ -15,7 +15,6 @@ local string = {
sub = string.sub,
gmatch = string.gmatch
}
-local naught = require("naughty")
-- }}}
@@ -34,8 +33,8 @@ local function worker(format)
local cpu_lines = {}
-- Get CPU stats
- local fd = io.open("/proc/stat")
- for line in fd:lines() do
+ local f = io.open("/proc/stat")
+ for line in f:lines() do
if string.sub(line, 1, 3) ~= "cpu" then break end
cpu_lines[#cpu_lines+1] = {}
@@ -44,7 +43,7 @@ local function worker(format)
table.insert(cpu_lines[#cpu_lines], i)
end
end
- fd:close()
+ f:close()
-- Ensure tables are initialized correctly
for i = #cpu_total + 1, #cpu_lines do