All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
4 Licensed under GNU General Public License v2
5 * (c) 2013, Luke Bonham
6 * (c) 2010, Adrian C. <anrxc@sysphere.org>
7 * (c) 2009, Lucas de Vries <lucas@glacicle.com>
11 local helpers = require("lain.helpers")
13 local beautiful = require("beautiful")
14 local wibox = require("wibox")
15 local naughty = require("naughty")
17 local io = { popen = io.popen }
20 local string = { match = string.match,
21 format = string.format }
22 local tonumber = tonumber
24 local setmetatable = setmetatable
26 -- File system disk space usage
29 local fs_notification = nil
32 if fs_notification ~= nil then
33 naughty.destroy(fs_notification)
38 function fs.show(t_out, fs_args)
41 local cmd = (fs_args and string.format("dfs %s", fs_args)) or "dfs"
42 local ws = helpers.read_pipe(helpers.scripts_dir .. cmd):gsub("\n*$", "")
44 if fs.followmouse then
45 fs.notification_preset.screen = mouse.screen
48 fs_notification = naughty.notify({
49 preset = fs.notification_preset,
56 local unit = { ["mb"] = 1024, ["gb"] = 1024^2 }
58 local function worker(args)
59 local args = args or {}
60 local timeout = args.timeout or 600
61 local partition = args.partition or "/"
62 local showpopup = args.showpopup or "on"
63 local notify = args.notify or "on"
64 local settings = args.settings or function() end
66 fs.followmouse = args.followmouse or false
67 fs.notification_preset = args.notification_preset or { fg = beautiful.fg_normal }
69 fs.widget = wibox.widget.textbox('')
71 helpers.set_map(partition, false)
76 local f = assert(io.popen("LC_ALL=C df -kP"))
78 for line in f:lines() do -- Match: (size) (used)(avail)(use%) (mount)
79 local s = string.match(line, "^.-[%s]([%d]+)")
80 local u,a,p = string.match(line, "([%d]+)[%D]+([%d]+)[%D]+([%d]+)%%")
81 local m = string.match(line, "%%[%s]([%p%w]+)")
83 if u and m then -- Handle 1st line and broken regexp
84 fs_info[m .. " size_mb"] = string.format("%.1f", tonumber(s) / unit["mb"])
85 fs_info[m .. " size_gb"] = string.format("%.1f", tonumber(s) / unit["gb"])
86 fs_info[m .. " used_p"] = tonumber(p)
87 fs_info[m .. " avail_p"] = 100 - tonumber(p)
93 fs_now.used = tonumber(fs_info[partition .. " used_p"]) or 0
94 fs_now.available = tonumber(fs_info[partition .. " avail_p"]) or 0
95 fs_now.size_mb = tonumber(fs_info[partition .. " size_mb"]) or 0
96 fs_now.size_gb = tonumber(fs_info[partition .. " size_gb"]) or 0
98 notification_preset = fs.notification_preset
102 if notify == "on" and fs_now.used >= 99 and not helpers.get_map(partition)
106 text = partition .. " ran out!\nmake some room",
111 helpers.set_map(partition, true)
113 helpers.set_map(partition, false)
117 if showpopup == "on" then
118 fs.widget:connect_signal('mouse::enter', function () fs:show(0) end)
119 fs.widget:connect_signal('mouse::leave', function () fs:hide() end)
122 helpers.newtimer(partition, timeout, update)
124 return setmetatable(fs, { __index = fs.widget })
127 return setmetatable(fs, { __call = function(_, ...) return worker(...) end })