aboutsummaryrefslogtreecommitdiff
path: root/dio.lua
diff options
context:
space:
mode:
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]+)")