]> git.madduck.net Git - etc/awesome.git/blob - widgets/temp.lua.orig

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:

merging with upstream
[etc/awesome.git] / widgets / temp.lua.orig
1
2 --[[
3                                                   
4      Licensed under GNU General Public License v2 
5       * (c) 2013, Luke Bonham                     
6                                                   
7 --]]
8
9 local newtimer     = require("lain.helpers").newtimer
10
11 local wibox        = require("wibox")
12
13 local io           = { open = io.open }
14 local tonumber     = tonumber
15
16 local setmetatable = setmetatable
17
18 -- coretemp
19 -- lain.widgets.temp
20 local temp = {}
21
22 local function worker(args)
23     local args     = args or {}
24     local timeout  = args.timeout or 2
25     local tempfile = args.tempfile or "/sys/class/thermal/thermal_zone0/temp"
26     local settings = args.settings or function() end
27
28     temp.widget = wibox.widget.textbox('')
29
30     function update()
31         local f = io.open(tempfile)
32         if f ~= nil
33         then
34 <<<<<<< HEAD
35             coretemp_now = tonumber(f:read("*a")) / 1000
36 =======
37             coretemp_now = tonumber(f:read("*all")) / 1000
38 >>>>>>> upstream/master
39             f:close()
40         else
41             coretemp_now = "N/A"
42         end
43
44         widget = temp.widget
45         settings()
46     end
47
48     newtimer("coretemp", timeout, update)
49     return temp.widget
50 end
51
52 return setmetatable(temp, { __call = function(_, ...) return worker(...) end })