]> git.madduck.net Git - etc/awesome.git/blob - widget/mem.lua

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

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.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

calendar, #289: attempt to assert notification timeout when t_out is 0
[etc/awesome.git] / widget / mem.lua
1
2 --[[
3                                                   
4      Licensed under GNU General Public License v2 
5       * (c) 2013,      Luke Bonham                
6       * (c) 2010-2012, Peter Hofmann              
7                                                   
8 --]]
9
10 local helpers      = require("lain.helpers")
11 local wibox        = require("wibox")
12 local gmatch       = string.gmatch
13 local lines        = io.lines
14 local floor        = math.floor
15 local setmetatable = setmetatable
16
17 -- Memory usage (ignoring caches)
18 -- lain.widget.mem
19 local mem = {}
20
21 local function worker(args)
22     local args     = args or {}
23     local timeout  = args.timeout or 2
24     local settings = args.settings or function() end
25
26     mem.widget = wibox.widget.textbox()
27
28     function mem.update()
29         mem_now = {}
30         for line in lines("/proc/meminfo") do
31             for k, v in gmatch(line, "([%a]+):[%s]+([%d]+).+") do
32                 if     k == "MemTotal"     then mem_now.total = floor(v / 1024 + 0.5)
33                 elseif k == "MemFree"      then mem_now.free  = floor(v / 1024 + 0.5)
34                 elseif k == "Buffers"      then mem_now.buf   = floor(v / 1024 + 0.5)
35                 elseif k == "Cached"       then mem_now.cache = floor(v / 1024 + 0.5)
36                 elseif k == "SwapTotal"    then mem_now.swap  = floor(v / 1024 + 0.5)
37                 elseif k == "SwapFree"     then mem_now.swapf = floor(v / 1024 + 0.5)
38                 elseif k == "SReclaimable" then mem_now.srec  = floor(v / 1024 + 0.5)
39                 end
40             end
41         end
42
43         mem_now.used = mem_now.total - mem_now.free - mem_now.buf - mem_now.cache - mem_now.srec
44         mem_now.swapused = mem_now.swap - mem_now.swapf
45         mem_now.perc = math.floor(mem_now.used / mem_now.total * 100)
46
47         widget = mem.widget
48         settings()
49     end
50
51     helpers.newtimer("mem", timeout, mem.update)
52
53     return mem
54 end
55
56 return setmetatable(mem, { __call = function(_, ...) return worker(...) end })