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

awesome-copycats: issue #16 fix
[etc/awesome.git] / widgets / bat.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 newtimer     = require("lain.helpers").newtimer
11 local first_line   = require("lain.helpers").first_line
12
13 local naughty      = require("naughty")
14 local wibox        = require("wibox")
15
16 local math         = { floor  = math.floor }
17 local string       = { format = string.format }
18 local tonumber     = tonumber
19
20 local setmetatable = setmetatable
21
22 -- Battery infos
23 -- lain.widgets.bat
24 local bat = {}
25
26 local function worker(args)
27     local args = args or {}
28     local timeout = args.timeout or 30
29     local battery = args.battery or "BAT0"
30     local settings = args.settings or function() end
31
32     bat.widget = wibox.widget.textbox('')
33
34     function update()
35         bat_now = {
36             status = "Not present",
37             perc   = "N/A",
38             time   = "N/A",
39             watt   = "N/A"
40         }
41
42         local bstr  = "/sys/class/power_supply/" .. battery
43
44         local present = first_line(bstr .. "/present")
45
46         if present == "1"
47         then
48             local rate  = first_line(bstr .. "/power_now") or
49                           first_line(bstr .. "/current_now")
50
51             local ratev = first_line(bstr .. "/voltage_now")
52
53             local rem   = first_line(bstr .. "/energy_now") or
54                           first_line(bstr .. "/charge_now")
55
56             local tot   = first_line(bstr .. "/energy_full") or
57                           first_line(bstr .. "/charge_full")
58
59             bat_now.status = first_line(bstr .. "/status") or "N/A"
60
61             rate  = tonumber(rate)
62             ratev = tonumber(ratev)
63             rem   = tonumber(rem)
64             tot   = tonumber(tot)
65
66             local time_rat = 0
67             if bat_now.status == "Charging"
68             then
69                 time_rat = (tot - rem) / rate
70             elseif bat_now.status == "Discharging"
71             then
72                 time_rat = rem / rate
73             end
74
75             local hrs = math.floor(time_rat)
76             local min = math.floor((time_rat - hrs) * 60)
77
78             bat_now.time = string.format("%02d:%02d", hrs, min)
79             bat_now.perc = string.format("%d", (rem / tot) * 100)
80             bat_now.watt = string.format("%.2fW", (rate * ratev) / 1e12)
81
82             -- notifications for low and critical states
83             if bat_now.status == "Discharging"
84             then
85                 if tonumber(bat_now.perc) <= 5
86                 then
87                     bat.id = naughty.notify({
88                         text = "shutdown imminent",
89                         title = "battery nearly exhausted",
90                         position = "top_right",
91                         timeout = 15,
92                         fg="#000000",
93                         bg="#ffffff",
94                         ontop = true,
95                         replaces_id = bat.id
96                     }).id
97                 elseif tonumber(bat_now.perc) <= 15
98                 then
99                     bat.id = naughty.notify({
100                         text = "plug the cable",
101                         title = "battery low",
102                         position = "top_right",
103                         timeout = 15,
104                         fg="#202020",
105                         bg="#cdcdcd",
106                         ontop = true,
107                         replaces_id = bat.id
108                     }).id
109                 end
110             end
111         end
112
113         widget = bat.widget
114         settings()
115     end
116
117     newtimer("bat", timeout, update)
118
119     return bat.widget
120 end
121
122 return setmetatable(bat, { __call = function(_, ...) return worker(...) end })