2013-09-07 12:06:42 +02:00
|
|
|
|
|
|
|
--[[
|
|
|
|
|
|
|
|
Licensed under GNU General Public License v2
|
|
|
|
* (c) 2013, Luke Bonham
|
|
|
|
* (c) 2010-2012, Peter Hofmann
|
|
|
|
|
|
|
|
--]]
|
|
|
|
|
2013-09-10 23:02:11 +02:00
|
|
|
local newtimer = require("lain.helpers").newtimer
|
2013-09-07 12:06:42 +02:00
|
|
|
local first_line = require("lain.helpers").first_line
|
|
|
|
|
|
|
|
local naughty = require("naughty")
|
|
|
|
local wibox = require("wibox")
|
|
|
|
|
|
|
|
local math = { floor = math.floor }
|
|
|
|
local string = { format = string.format }
|
2013-09-29 17:06:28 +02:00
|
|
|
local tonumber = tonumber
|
2013-09-07 12:06:42 +02:00
|
|
|
|
|
|
|
local setmetatable = setmetatable
|
|
|
|
|
|
|
|
-- Battery infos
|
|
|
|
-- lain.widgets.bat
|
|
|
|
|
2013-09-10 23:02:11 +02:00
|
|
|
local function worker(args)
|
2016-03-22 08:39:38 +01:00
|
|
|
local bat = {}
|
|
|
|
local args = args or {}
|
|
|
|
local timeout = args.timeout or 30
|
|
|
|
local battery = args.battery or "BAT0"
|
|
|
|
local ac = args.ac or "AC0"
|
|
|
|
local notify = args.notify or "on"
|
2013-09-10 23:02:11 +02:00
|
|
|
local settings = args.settings or function() end
|
2013-09-07 12:06:42 +02:00
|
|
|
|
2013-09-11 19:39:14 +02:00
|
|
|
bat.widget = wibox.widget.textbox('')
|
|
|
|
|
2014-02-02 14:29:44 +01:00
|
|
|
bat_notification_low_preset = {
|
|
|
|
title = "Battery low",
|
|
|
|
text = "Plug the cable!",
|
|
|
|
timeout = 15,
|
|
|
|
fg = "#202020",
|
|
|
|
bg = "#CDCDCD"
|
|
|
|
}
|
|
|
|
|
|
|
|
bat_notification_critical_preset = {
|
|
|
|
title = "Battery exhausted",
|
|
|
|
text = "Shutdown imminent",
|
|
|
|
timeout = 15,
|
|
|
|
fg = "#000000",
|
|
|
|
bg = "#FFFFFF"
|
|
|
|
}
|
|
|
|
|
2013-09-13 00:07:44 +02:00
|
|
|
function update()
|
2013-09-12 02:26:48 +02:00
|
|
|
bat_now = {
|
2016-03-22 08:39:38 +01:00
|
|
|
status = "Not present",
|
|
|
|
ac_status = "N/A",
|
|
|
|
perc = "N/A",
|
|
|
|
time = "N/A",
|
|
|
|
watt = "N/A"
|
2013-09-12 02:26:48 +02:00
|
|
|
}
|
|
|
|
|
2016-03-22 08:39:38 +01:00
|
|
|
local bstr = "/sys/class/power_supply/" .. battery
|
2013-09-25 16:36:19 +02:00
|
|
|
local present = first_line(bstr .. "/present")
|
2013-09-07 12:06:42 +02:00
|
|
|
|
|
|
|
if present == "1"
|
|
|
|
then
|
2016-03-22 15:55:55 +01:00
|
|
|
local ratep = tonumber(first_line(bstr .. "/power_now"))
|
|
|
|
local ratec = tonumber(first_line(bstr .. "/current_now"))
|
2016-03-22 08:59:30 +01:00
|
|
|
local ratev = tonumber(first_line(bstr .. "/voltage_now"))
|
2013-09-25 16:36:19 +02:00
|
|
|
|
2016-03-22 08:59:30 +01:00
|
|
|
local rem = tonumber(first_line(bstr .. "/energy_now") or
|
|
|
|
first_line(bstr .. "/charge_now"))
|
2013-09-25 16:36:19 +02:00
|
|
|
|
2016-03-22 08:59:30 +01:00
|
|
|
local tot = tonumber(first_line(bstr .. "/energy_full") or
|
|
|
|
first_line(bstr .. "/charge_full"))
|
2013-09-25 16:36:19 +02:00
|
|
|
|
|
|
|
bat_now.status = first_line(bstr .. "/status") or "N/A"
|
2016-03-22 18:41:39 +01:00
|
|
|
bat_now.ac_status = first_line(string.format("/sys/class/power_supply/%s/online", ac)) or "N/A"
|
2013-09-07 12:06:42 +02:00
|
|
|
|
|
|
|
local time_rat = 0
|
2013-09-10 23:02:11 +02:00
|
|
|
if bat_now.status == "Charging"
|
2013-09-07 12:06:42 +02:00
|
|
|
then
|
2016-03-22 15:55:55 +01:00
|
|
|
time_rat = (tot - rem) / (ratep or ratec)
|
2013-09-10 23:02:11 +02:00
|
|
|
elseif bat_now.status == "Discharging"
|
2013-09-07 12:06:42 +02:00
|
|
|
then
|
2016-03-22 15:55:55 +01:00
|
|
|
time_rat = rem / (ratep or ratec)
|
2013-09-07 12:06:42 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
local hrs = math.floor(time_rat)
|
2013-09-30 16:29:18 +02:00
|
|
|
if hrs < 0 then hrs = 0 elseif hrs > 23 then hrs = 23 end
|
|
|
|
|
2013-09-29 17:06:28 +02:00
|
|
|
local min = math.floor((time_rat - hrs) * 60)
|
2013-09-30 16:29:18 +02:00
|
|
|
if min < 0 then min = 0 elseif min > 59 then min = 59 end
|
2013-09-07 12:06:42 +02:00
|
|
|
|
2013-09-10 23:02:11 +02:00
|
|
|
bat_now.time = string.format("%02d:%02d", hrs, min)
|
2016-01-03 11:35:10 +01:00
|
|
|
|
2016-01-17 12:28:50 +01:00
|
|
|
local perc = tonumber(first_line(bstr .. "/capacity")) or math.floor((rem / tot) * 100)
|
2016-01-03 11:35:10 +01:00
|
|
|
|
2016-01-17 12:28:50 +01:00
|
|
|
if perc <= 100 then
|
2016-01-03 11:35:10 +01:00
|
|
|
bat_now.perc = string.format("%d", perc)
|
|
|
|
elseif perc > 100 then
|
|
|
|
bat_now.perc = "100"
|
|
|
|
elseif perc < 0 then
|
|
|
|
bat_now.perc = "0"
|
|
|
|
end
|
|
|
|
|
2016-03-22 15:55:55 +01:00
|
|
|
if ratep then
|
|
|
|
bat_now.watt = string.format("%.2fW", ratep)
|
2013-10-06 21:16:25 +02:00
|
|
|
else
|
2016-03-22 15:55:55 +01:00
|
|
|
bat_now.watt = string.format("%.2fW", (ratev * ratec) / 1e12)
|
2013-10-06 21:16:25 +02:00
|
|
|
end
|
2013-09-07 12:06:42 +02:00
|
|
|
end
|
|
|
|
|
2013-09-11 19:39:14 +02:00
|
|
|
widget = bat.widget
|
2013-09-10 23:02:11 +02:00
|
|
|
settings()
|
2014-02-02 14:29:44 +01:00
|
|
|
|
|
|
|
-- notifications for low and critical states
|
2016-03-22 08:39:38 +01:00
|
|
|
if bat_now.status == "Discharging" and notify == "on" and bat_now.perc
|
2014-02-02 14:29:44 +01:00
|
|
|
then
|
2014-03-15 11:13:26 +01:00
|
|
|
local nperc = tonumber(bat_now.perc) or 100
|
2014-03-11 21:44:22 +01:00
|
|
|
if nperc <= 5
|
2014-02-02 14:29:44 +01:00
|
|
|
then
|
|
|
|
bat.id = naughty.notify({
|
|
|
|
preset = bat_notification_critical_preset,
|
2014-07-19 16:36:15 +02:00
|
|
|
replaces_id = bat.id,
|
2014-02-02 14:29:44 +01:00
|
|
|
}).id
|
2014-03-11 21:44:22 +01:00
|
|
|
elseif nperc <= 15
|
2014-02-02 14:29:44 +01:00
|
|
|
then
|
|
|
|
bat.id = naughty.notify({
|
|
|
|
preset = bat_notification_low_preset,
|
2014-07-19 16:36:15 +02:00
|
|
|
replaces_id = bat.id,
|
2014-02-02 14:29:44 +01:00
|
|
|
}).id
|
|
|
|
end
|
|
|
|
end
|
2013-09-10 23:02:11 +02:00
|
|
|
end
|
2013-09-07 12:06:42 +02:00
|
|
|
|
2015-07-09 12:52:18 +02:00
|
|
|
newtimer(battery, timeout, update)
|
2013-09-07 12:06:42 +02:00
|
|
|
|
2015-09-19 10:44:38 +02:00
|
|
|
return setmetatable(bat, { __index = bat.widget })
|
2013-09-07 12:06:42 +02:00
|
|
|
end
|
|
|
|
|
2015-09-19 10:44:38 +02:00
|
|
|
return setmetatable({}, { __call = function(_, ...) return worker(...) end })
|