lain/widgets/bat.lua

163 lines
5.0 KiB
Lua
Raw Normal View History

2013-09-07 12:06:42 +02:00
--[[
Licensed under GNU General Public License v2
* (c) 2013, Luke Bonham
* (c) 2010-2012, Peter Hofmann
--]]
local helpers = require("lain.helpers")
2013-09-07 12:06:42 +02:00
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)
local bat = {}
2013-09-07 12:06:42 +02:00
local args = args or {}
2013-09-10 23:02:11 +02:00
local timeout = args.timeout or 30
2013-09-07 12:06:42 +02:00
local battery = args.battery or "BAT0"
2014-01-14 09:46:06 +01:00
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('')
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"
}
helpers.set_map(battery .. "status", "N/A")
helpers.set_map(battery .. "perc", "N/A")
helpers.set_map(battery .. "time", "N/A")
helpers.set_map(battery .. "watt", "N/A")
2013-09-13 00:07:44 +02:00
function update()
2013-09-12 02:26:48 +02:00
bat_now = {
2013-09-13 00:07:44 +02:00
status = "Not present",
2013-09-12 02:26:48 +02:00
perc = "N/A",
time = "N/A",
watt = "N/A"
}
2013-09-25 16:36:19 +02:00
local bstr = "/sys/class/power_supply/" .. battery
local present = helpers.first_line(bstr .. "/present")
2013-09-07 12:06:42 +02:00
if present == "1"
then
local rate = helpers.first_line(bstr .. "/power_now") or
helpers.first_line(bstr .. "/current_now")
2013-09-25 16:36:19 +02:00
local ratev = helpers.first_line(bstr .. "/voltage_now")
2013-09-25 16:36:19 +02:00
local rem = helpers.first_line(bstr .. "/energy_now") or
helpers.first_line(bstr .. "/charge_now")
2013-09-25 16:36:19 +02:00
local tot = helpers.first_line(bstr .. "/energy_full") or
helpers.first_line(bstr .. "/charge_full")
2013-09-25 16:36:19 +02:00
bat_now.status = helpers.first_line(bstr .. "/status") or "N/A"
2013-09-07 12:06:42 +02:00
2014-02-04 08:59:00 +01:00
rate = tonumber(rate) or 1
2013-09-29 17:06:28 +02:00
ratev = tonumber(ratev)
rem = tonumber(rem)
tot = tonumber(tot)
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
time_rat = (tot - rem) / rate
2013-09-10 23:02:11 +02:00
elseif bat_now.status == "Discharging"
2013-09-07 12:06:42 +02:00
then
time_rat = rem / rate
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)
2013-10-06 21:16:25 +02:00
bat_now.perc = helpers.first_line(bstr .. "/capacity")
2014-02-08 11:44:09 +01:00
if not bat_now.perc then
local perc = (rem / tot) * 100
if perc <= 100 then
bat_now.perc = string.format("%d", perc)
elseif perc > 100 then
bat_now.perc = "100"
elseif perc < 0 then
bat_now.perc = "0"
end
2013-10-06 21:16:25 +02:00
end
if rate ~= nil and ratev ~= nil then
bat_now.watt = string.format("%.2fW", (rate * ratev) / 1e12)
else
2013-10-07 00:26:26 +02:00
bat_now.watt = "N/A"
2013-10-06 21:16:25 +02:00
end
2013-09-07 12:06:42 +02:00
end
if bat_now.status ~= helpers.get_map(battery .. "status")
or bat_now.perc ~= helpers.get_map(battery .. "perc")
or bat_now.time ~= helpers.get_map(battery .. "time")
or bat_now.watt ~= helpers.get_map(battery .. "watt")
then
widget = bat.widget
settings()
helpers.set_map(battery .. "status", bat_now.status)
helpers.set_map(battery .. "perc", bat_now.perc)
helpers.set_map(battery .. "time", bat_now.time)
helpers.set_map(battery .. "watt", bat_now.watt)
end
-- notifications for low and critical states
2014-02-08 11:44:09 +01:00
if bat_now.status == "Discharging" and notify == "on" and bat_now.perc ~= nil
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
then
bat.id = naughty.notify({
preset = bat_notification_critical_preset,
replaces_id = bat.id,
}).id
2014-03-11 21:44:22 +01:00
elseif nperc <= 15
then
bat.id = naughty.notify({
preset = bat_notification_low_preset,
replaces_id = bat.id,
}).id
end
end
2013-09-10 23:02:11 +02:00
end
2013-09-07 12:06:42 +02:00
helpers.newtimer(battery, timeout, update)
2013-09-07 12:06:42 +02:00
return bat.widget
2013-09-07 12:06:42 +02:00
end
return setmetatable(bat, { __call = function(_, ...) return worker(...) end })