X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/8d3868d7ce528cfc075e246c8935bae2724e0868..cc8de6a059757bc5ea3f8f7013db55ab3af924a5:/widget/fs.lua diff --git a/widget/fs.lua b/widget/fs.lua index 652fa8a..b2a21db 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 @@ -35,17 +32,17 @@ function fs.show(seconds, scr) if fs.followtag then fs.notification_preset.screen = focused() - elseif scr then + else fs.notification_preset.screen = scr or 1 end fs.notification = naughty.notify({ - preset = fs.notification_preset, - timeout = seconds or 5 + preset = fs.notification_preset, + timeout = seconds or 5 }) 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 })