- local args = args or {}
- local partition = args.partition or "/"
- local refresh_timeout = args.refresh_timeout or 600
- local header = args.header or " Hdd "
- local header_color = args.header_color or beautiful.fg_normal or "#FFFFFF"
- fs.color = args.color or beautiful.fg_focus or "#FFFFFF"
- local footer = args.footer or " "
- local shadow = args.shadow or false
-
- local myfs = wibox.widget.textbox()
-
- helpers.set_map("fs", false)
-
- local fsupdate = function()
- local fs_info = {} -- Get data from df
- local f = io.popen("LC_ALL=C df -kP")
-
- local function set_text()
- local info = fs_info['{' .. partition .. ' used_p}']
- myfs:set_markup(markup(header_color, header)
- .. markup(fs.color, info .. footer))
- end
-
- for line in f:lines() do -- Match: (size) (used)(avail)(use%) (mount)
- local s = string.match(line, "^.-[%s]([%d]+)")
- local u,a,p = string.match(line, "([%d]+)[%D]+([%d]+)[%D]+([%d]+)%%")
- local m = string.match(line, "%%[%s]([%p%w]+)")
-
- if u and m then -- Handle 1st line and broken regexp
- helpers.uformat(fs_info, m .. " used", u, unit)
- fs_info["{" .. m .. " used_p}"] = tonumber(p)
+ local args = args or {}
+ local timeout = args.timeout or 600
+ local partition = args.partition or "/"
+ local showpopup = args.showpopup or "on"
+ local notify = args.notify or "on"
+ local settings = args.settings or function() end
+
+ fs.options = args.options
+ fs.followtag = args.followtag or false
+ fs.notification_preset = args.notification_preset
+
+ if not fs.notification_preset then
+ fs.notification_preset = naughty.config.defaults
+ fs.notification_preset.font = "Monospace 10"
+ fs.notification_preset.fg = "#FFFFFF"
+ fs.notification_preset.bg = "#000000"
+ end
+
+ fs.widget = wibox.widget.textbox()
+
+ helpers.set_map(partition, false)
+
+ function update()
+ fs_info, fs_now = {}, {}
+ helpers.async({ shell, "-c", "LC_ALL=C df -k --output=target,size,used,avail,pcent" }, function(f)
+ for line in string.gmatch(f, "\n[^\n]+") do
+ local m,s,u,a,p = string.match(line, "(/.-%s).-(%d+).-(%d+).-(%d+).-([%d]+)%%")
+ m = m:gsub(" ", "") -- clean target from any whitespace
+
+ fs_info[m .. " size_mb"] = string.format("%.1f", tonumber(s) / fs.unit["mb"])
+ fs_info[m .. " size_gb"] = string.format("%.1f", tonumber(s) / fs.unit["gb"])
+ fs_info[m .. " used_mb"] = string.format("%.1f", tonumber(u) / fs.unit["mb"])
+ fs_info[m .. " used_gb"] = string.format("%.1f", tonumber(u) / fs.unit["gb"])
+ fs_info[m .. " used_p"] = p
+ fs_info[m .. " avail_mb"] = string.format("%.1f", tonumber(a) / fs.unit["mb"])
+ fs_info[m .. " avail_gb"] = string.format("%.1f", tonumber(a) / fs.unit["gb"])
+ fs_info[m .. " avail_p"] = string.format("%d", 100 - tonumber(p))