X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/3f854a45f578f0a93d9f561bb8d7f574ab5675ee..586c54a25750fd90d91c15ac8eb818b2613de582:/widget/fs.lua diff --git a/widget/fs.lua b/widget/fs.lua index 652fa8a..49345ca 100644 --- a/widget/fs.lua +++ b/widget/fs.lua @@ -7,15 +7,12 @@ --]] local helpers = require("lain.helpers") - local shell = require("awful.util").shell local focused = require("awful.screen").focused local wibox = require("wibox") local naughty = require("naughty") - local string = string local tonumber = tonumber - local setmetatable = setmetatable -- File system disk space usage @@ -45,7 +42,7 @@ function fs.show(seconds, scr) }) end -local function worker(args) +local function factory(args) local args = args or {} local timeout = args.timeout or 600 local partition = args.partition or "/" @@ -127,4 +124,4 @@ local function worker(args) return fs end -return setmetatable(fs, { __call = function(_, ...) return worker(...) end }) +return setmetatable(fs, { __call = function(_, ...) return factory(...) end })