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 }
19 local string = { match = string.match,
20 format = string.format }
21 local tonumber = tonumber
23 local setmetatable = setmetatable
25 -- File system disk space usage
29 local fs_notification = nil
30 fs_notification_preset = { fg = beautiful.fg_normal }
33 if fs_notification ~= nil then
34 naughty.destroy(fs_notification)
39 function fs:show(t_out)
42 naughty.notify({text=fs_notification_preset.screen})
44 local f = io.popen(helpers.scripts_dir .. "dfs")
45 ws = f:read("*all"):gsub("\n*$", "")
48 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 settings = args.settings or function() end
64 fs.widget = wibox.widget.textbox('')
66 helpers.set_map(partition, false)
71 local f = assert(io.popen("LC_ALL=C df -kP"))
73 for line in f:lines() do -- Match: (size) (used)(avail)(use%) (mount)
74 local s = string.match(line, "^.-[%s]([%d]+)")
75 local u,a,p = string.match(line, "([%d]+)[%D]+([%d]+)[%D]+([%d]+)%%")
76 local m = string.match(line, "%%[%s]([%p%w]+)")
78 if u and m then -- Handle 1st line and broken regexp
79 fs_info[m .. " size_mb"] = string.format("%.1f", tonumber(s) / unit["mb"])
80 fs_info[m .. " size_gb"] = string.format("%.1f", tonumber(s) / unit["gb"])
81 fs_info[m .. " used_p"] = tonumber(p)
82 fs_info[m .. " avail_p"] = 100 - tonumber(p)
88 fs_now.used = tonumber(fs_info[partition .. " used_p"]) or 0
89 fs_now.available = tonumber(fs_info[partition .. " avail_p"]) or 0
90 fs_now.size_mb = tonumber(fs_info[partition .. " size_mb"]) or 0
91 fs_now.size_gb = tonumber(fs_info[partition .. " size_gb"]) or 0
96 if fs_now.used >= 99 and not helpers.get_map(partition)
100 text = partition .. " ran out!\nmake some room",
105 helpers.set_map(partition, true)
107 helpers.set_map(partition, false)
111 fs.widget:connect_signal('mouse::enter', function () fs:show(0) end)
112 fs.widget:connect_signal('mouse::leave', function () fs:hide() end)
114 helpers.newtimer(partition, timeout, update)
116 return setmetatable(fs, { __index = fs.widget })
119 return setmetatable(fs, { __call = function(_, ...) return worker(...) end })