aboutsummaryrefslogtreecommitdiff
path: root/dio.lua
diff options
context:
space:
mode:
authorAdrian C. (anrxc) <anrxc@sysphere.org>2009-11-11 14:32:37 +0100
committerAdrian C. (anrxc) <anrxc@sysphere.org>2009-11-11 14:32:37 +0100
commit1d0cfd3aeded65ded10b7ab3163488c3dc1d4383 (patch)
tree8de5320c33a0167a9e32bcaca386e7e6d3802f7b /dio.lua
parent76942d17a448a2f6a45fb4b3d4d139c416fdf376 (diff)
downloadvicious-legacy-1d0cfd3aeded65ded10b7ab3163488c3dc1d4383.tar.xz
Cleanup widgets that use pathtotable helper
Diffstat (limited to 'dio.lua')
-rw-r--r--dio.lua5
1 files changed, 1 insertions, 4 deletions
diff --git a/dio.lua b/dio.lua
index 41c0663..07b7266 100644
--- a/dio.lua
+++ b/dio.lua
@@ -27,10 +27,7 @@ local disk_total = {}
-- {{{ Disk I/O widget type
local function worker(format, disk)
local disk_lines = {}
- local disk_stats = setmetatable(
- { _path = "/sys/block/" .. disk },
- helpers.pathtotable
- )
+ local disk_stats = helpers.pathtotable("/sys/block/" .. disk)
if disk_stats.stat then
local match = string.gmatch(disk_stats.stat, "[%s]+([%d]+)")