]> git.madduck.net Git - etc/awesome.git/blob - widgets/contrib/brightness.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:

brigthness: unused lib removed
[etc/awesome.git] / widgets / contrib / brightness.lua
1
2 --[[
3                                                    
4      Licensed under GNU General Public License v2  
5       * (c) 2013, yawnt <yawn.localhost@gmail.com> 
6                                                    
7 --]]
8
9 local newtimer        = require("lain.helpers").newtimer
10
11 local wibox           = require("wibox")
12 local io              = { popen  = io.popen }
13
14 local setmetatable    = setmetatable
15
16 -- Brightness level
17 -- lain.widgets.contrib.brightness
18 local brightness = {}
19
20 local function worker(args)
21     local args      = args or {}
22     local backlight = args.backlight or "acpi_video0"
23     local timeout   = args.timeout or 5
24     local settings  = args.settings or function() end
25
26     brightness.widget = wibox.widget.textbox('')
27
28     function brightness.update()
29         local f = assert(io.popen('cat /sys/class/backlight/' .. backlight .. "/brightness"))
30         brightness_now = f:read("*a")
31         f:close()
32
33         widget = brightness.widget
34         settings()
35     end
36
37     newtimer("brightness", timeout, brightness.update)
38
39     return setmetatable(brightness, { __index = brightness.widget })
40 end
41
42 return setmetatable(brightness, { __call = function(_, ...) return worker(...) end })