awesome-wm-widgets/batteryarc-widget/batteryarc.lua

154 lines
4.7 KiB
Lua
Raw Normal View History

-------------------------------------------------
-- 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",
font = "Play 6",
2017-10-09 23:14:03 +02:00
widget = wibox.widget.textbox
}
local text_with_background = wibox.container.background(text)
2017-10-09 23:14:03 +02:00
local batteryarc = wibox.widget {
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
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,
}
local last_battery_check = os.time()
watch("acpi -i", 10,
function(widget, stdout)
2017-10-05 02:46:09 +02:00
local batteryType
local battery_info = {}
local capacities = {}
for s in stdout:gmatch("[^\r\n]+") do
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
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
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
charge = charge + batt.charge * capacities[i]
end
if capacity > 0 then
charge = charge / capacity
end
2017-10-05 02:46:09 +02:00
widget.value = charge / 100
2017-10-09 23:14:03 +02:00
if status == 'Charging' then
text_with_background.bg = beautiful.widget_green
text_with_background.fg = beautiful.widget_black
2017-10-09 23:14:03 +02:00
else
text_with_background.bg = beautiful.widget_transparent
text_with_background.fg = beautiful.widget_main_color
2017-10-09 23:14:03 +02:00
end
text.text = string.format('%d', charge)
2017-10-09 23:14:03 +02:00
if charge < 15 then
batteryarc.colors = { beautiful.widget_red }
if status ~= 'Charging' and os.difftime(os.time(), last_battery_check) > 300 then
-- if 5 minutes have elapsed since the last warning
last_battery_check = os.time()
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
return batteryarc