2019-02-26 17:17:48 +01:00
|
|
|
-------------------------------------------------
|
|
|
|
-- Battery Arc Widget for Awesome Window Manager
|
|
|
|
-- Shows the battery level of the laptop
|
|
|
|
-- More details could be found here:
|
|
|
|
-- https://github.com/streetturtle/awesome-wm-widgets/tree/master/batteryarc-widget
|
|
|
|
|
|
|
|
-- @author Pavel Makhov
|
|
|
|
-- @copyright 2019 Pavel Makhov
|
|
|
|
-------------------------------------------------
|
|
|
|
|
2017-10-05 02:46:09 +02:00
|
|
|
local awful = require("awful")
|
2017-10-09 23:14:03 +02:00
|
|
|
local beautiful = require("beautiful")
|
2017-10-05 02:46:09 +02:00
|
|
|
local naughty = require("naughty")
|
|
|
|
local wibox = require("wibox")
|
|
|
|
local watch = require("awful.widget.watch")
|
|
|
|
|
2017-10-09 23:14:03 +02:00
|
|
|
local HOME = os.getenv("HOME")
|
2017-10-05 02:46:09 +02:00
|
|
|
|
2017-10-09 23:14:03 +02:00
|
|
|
local text = wibox.widget {
|
|
|
|
id = "txt",
|
2019-02-26 17:17:48 +01:00
|
|
|
font = "Play 6",
|
2017-10-09 23:14:03 +02:00
|
|
|
widget = wibox.widget.textbox
|
|
|
|
}
|
|
|
|
|
2019-02-26 17:17:48 +01:00
|
|
|
local text_with_background = wibox.container.background(text)
|
2017-10-09 23:14:03 +02:00
|
|
|
|
|
|
|
local batteryarc = wibox.widget {
|
2019-02-26 17:17:48 +01:00
|
|
|
text_with_background,
|
2017-10-05 02:46:09 +02:00
|
|
|
max_value = 1,
|
|
|
|
rounded_edge = true,
|
|
|
|
thickness = 2,
|
|
|
|
start_angle = 4.71238898, -- 2pi*3/4
|
2019-02-26 17:17:48 +01:00
|
|
|
forced_height = 18,
|
|
|
|
forced_width = 18,
|
2017-10-05 02:46:09 +02:00
|
|
|
bg = "#ffffff11",
|
|
|
|
paddings = 2,
|
|
|
|
widget = wibox.container.arcchart,
|
|
|
|
set_value = function(self, value)
|
|
|
|
self.value = value
|
|
|
|
end,
|
|
|
|
}
|
|
|
|
|
2018-06-16 06:20:30 +02:00
|
|
|
local last_battery_check = os.time()
|
|
|
|
|
2018-11-26 22:12:15 +01:00
|
|
|
watch("acpi -i", 10,
|
2019-02-26 17:17:48 +01:00
|
|
|
function(widget, stdout)
|
2017-10-05 02:46:09 +02:00
|
|
|
local batteryType
|
2018-06-16 06:20:30 +02:00
|
|
|
|
|
|
|
local battery_info = {}
|
2018-11-26 22:12:15 +01:00
|
|
|
local capacities = {}
|
2018-06-16 06:20:30 +02:00
|
|
|
for s in stdout:gmatch("[^\r\n]+") do
|
2018-11-26 22:12:15 +01:00
|
|
|
local status, charge_str, time = string.match(s, '.+: (%a+), (%d?%d?%d)%%,?.*')
|
2018-12-20 03:18:58 +01:00
|
|
|
if string.match(s, 'rate information') then
|
|
|
|
-- ignore such line
|
|
|
|
elseif status ~= nil then
|
2018-11-26 22:12:15 +01:00
|
|
|
table.insert(battery_info, {status = status, charge = tonumber(charge_str)})
|
|
|
|
else
|
|
|
|
local cap_str = string.match(s, '.+:.+last full capacity (%d+)')
|
|
|
|
table.insert(capacities, tonumber(cap_str))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local capacity = 0
|
|
|
|
for i, cap in ipairs(capacities) do
|
|
|
|
capacity = capacity + cap
|
2018-06-16 06:20:30 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
local charge = 0
|
|
|
|
local status
|
|
|
|
for i, batt in ipairs(battery_info) do
|
|
|
|
if batt.charge >= charge then
|
|
|
|
status = batt.status -- use most charged battery status
|
|
|
|
-- this is arbitrary, and maybe another metric should be used
|
|
|
|
end
|
|
|
|
|
2018-11-26 22:12:15 +01:00
|
|
|
charge = charge + batt.charge * capacities[i]
|
2018-06-16 06:20:30 +02:00
|
|
|
end
|
2019-03-04 23:32:22 +01:00
|
|
|
if capacity > 0 then
|
|
|
|
charge = charge / capacity
|
|
|
|
end
|
2018-06-16 06:20:30 +02:00
|
|
|
|
2017-10-05 02:46:09 +02:00
|
|
|
widget.value = charge / 100
|
2017-10-09 23:14:03 +02:00
|
|
|
if status == 'Charging' then
|
2019-02-26 17:17:48 +01:00
|
|
|
text_with_background.bg = beautiful.widget_green
|
|
|
|
text_with_background.fg = beautiful.widget_black
|
2017-10-09 23:14:03 +02:00
|
|
|
else
|
2019-02-26 17:17:48 +01:00
|
|
|
text_with_background.bg = beautiful.widget_transparent
|
|
|
|
text_with_background.fg = beautiful.widget_main_color
|
2017-10-09 23:14:03 +02:00
|
|
|
end
|
|
|
|
|
2019-01-27 05:13:46 +01:00
|
|
|
text.text = string.format('%d', charge)
|
2018-11-26 22:12:15 +01:00
|
|
|
|
2017-10-09 23:14:03 +02:00
|
|
|
if charge < 15 then
|
|
|
|
batteryarc.colors = { beautiful.widget_red }
|
2018-06-16 06:20:30 +02:00
|
|
|
if status ~= 'Charging' and os.difftime(os.time(), last_battery_check) > 300 then
|
|
|
|
-- if 5 minutes have elapsed since the last warning
|
2019-03-05 23:08:20 +01:00
|
|
|
last_battery_check = os.time()
|
2018-06-16 06:39:14 +02:00
|
|
|
|
2017-10-09 23:14:03 +02:00
|
|
|
show_battery_warning()
|
|
|
|
end
|
|
|
|
elseif charge > 15 and charge < 40 then
|
|
|
|
batteryarc.colors = { beautiful.widget_yellow }
|
|
|
|
else
|
|
|
|
batteryarc.colors = { beautiful.widget_main_color }
|
|
|
|
end
|
2017-10-05 02:46:09 +02:00
|
|
|
end,
|
2017-10-09 23:14:03 +02:00
|
|
|
batteryarc)
|
2017-10-05 02:46:09 +02:00
|
|
|
|
|
|
|
-- Popup with battery info
|
|
|
|
-- One way of creating a pop-up notification - naughty.notify
|
|
|
|
local notification
|
|
|
|
function show_battery_status()
|
|
|
|
awful.spawn.easy_async([[bash -c 'acpi']],
|
|
|
|
function(stdout, _, _, _)
|
2017-10-09 23:14:03 +02:00
|
|
|
notification = naughty.notify {
|
|
|
|
text = stdout,
|
2017-10-05 02:46:09 +02:00
|
|
|
title = "Battery status",
|
2017-10-09 23:14:03 +02:00
|
|
|
timeout = 5,
|
|
|
|
hover_timeout = 0.5,
|
2017-10-05 02:46:09 +02:00
|
|
|
width = 200,
|
|
|
|
}
|
2017-10-09 23:14:03 +02:00
|
|
|
end)
|
2017-10-05 02:46:09 +02:00
|
|
|
end
|
2017-10-09 23:14:03 +02:00
|
|
|
|
|
|
|
batteryarc:connect_signal("mouse::enter", function() show_battery_status() end)
|
|
|
|
batteryarc:connect_signal("mouse::leave", function() naughty.destroy(notification) end)
|
2017-10-05 02:46:09 +02:00
|
|
|
|
|
|
|
-- Alternative to naughty.notify - tooltip. You can compare both and choose the preferred one
|
|
|
|
|
|
|
|
--battery_popup = awful.tooltip({objects = {battery_widget}})
|
|
|
|
|
|
|
|
-- To use colors from beautiful theme put
|
|
|
|
-- following lines in rc.lua before require("battery"):
|
|
|
|
-- beautiful.tooltip_fg = beautiful.fg_normal
|
|
|
|
-- beautiful.tooltip_bg = beautiful.bg_normal
|
|
|
|
|
|
|
|
--[[ Show warning notification ]]
|
|
|
|
function show_battery_warning()
|
2017-10-09 23:14:03 +02:00
|
|
|
naughty.notify {
|
|
|
|
icon = HOME .. "/.config/awesome/nichosi.png",
|
|
|
|
icon_size = 100,
|
2017-10-05 02:46:09 +02:00
|
|
|
text = "Huston, we have a problem",
|
|
|
|
title = "Battery is dying",
|
2017-10-09 23:14:03 +02:00
|
|
|
timeout = 5,
|
|
|
|
hover_timeout = 0.5,
|
2017-10-05 02:46:09 +02:00
|
|
|
position = "bottom_right",
|
|
|
|
bg = "#F06060",
|
|
|
|
fg = "#EEE9EF",
|
|
|
|
width = 300,
|
|
|
|
}
|
|
|
|
end
|
2017-12-11 23:09:22 +01:00
|
|
|
|
2019-02-26 17:17:48 +01:00
|
|
|
return batteryarc
|