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

171 lines
5.9 KiB
Lua
Raw Permalink 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 2020 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")
2020-12-06 20:47:40 +01:00
local WIDGET_DIR = HOME .. '/.config/awesome/awesome-wm-widgets/batteryarc-widget'
2017-10-05 02:46:09 +02:00
2020-12-06 20:47:40 +01:00
local batteryarc_widget = {}
2020-12-06 20:47:40 +01:00
local function worker(user_args)
2020-12-06 20:47:40 +01:00
local args = user_args or {}
local font = args.font or 'Play 6'
2020-01-13 01:58:46 +01:00
local arc_thickness = args.arc_thickness or 2
2019-06-02 15:46:41 +02:00
local show_current_level = args.show_current_level or false
local size = args.size or 18
2020-09-19 10:08:15 +02:00
local timeout = args.timeout or 10
2020-11-20 16:44:42 +01:00
local show_notification_mode = args.show_notification_mode or 'on_hover' -- on_hover / on_click
local notification_position = args.notification_position or 'top_right' -- see naughty.notify position argument
2019-06-02 15:46:41 +02:00
local main_color = args.main_color or beautiful.fg_color
local bg_color = args.bg_color or '#ffffff11'
local low_level_color = args.low_level_color or '#e53935'
local medium_level_color = args.medium_level_color or '#c0ca33'
2019-06-02 15:46:41 +02:00
local charging_color = args.charging_color or '#43a047'
2020-09-28 11:24:43 +02:00
local warning_msg_title = args.warning_msg_title or 'Houston, we have a problem'
local warning_msg_text = args.warning_msg_text or 'Battery is dying'
local warning_msg_position = args.warning_msg_position or 'bottom_right'
2020-12-06 20:47:40 +01:00
local warning_msg_icon = args.warning_msg_icon or WIDGET_DIR .. '/spaceman.jpg'
local enable_battery_warning = args.enable_battery_warning
if enable_battery_warning == nil then
enable_battery_warning = true
end
local text = wibox.widget {
font = font,
align = 'center',
valign = 'center',
widget = wibox.widget.textbox
}
local text_with_background = wibox.container.background(text)
2020-12-06 20:47:40 +01:00
batteryarc_widget = wibox.widget {
text_with_background,
max_value = 100,
rounded_edge = true,
thickness = arc_thickness,
start_angle = 4.71238898, -- 2pi*3/4
forced_height = size,
forced_width = size,
bg = bg_color,
paddings = 2,
widget = wibox.container.arcchart
}
local last_battery_check = os.time()
2020-11-20 16:44:42 +01:00
--[[ Show warning notification ]]
local function show_battery_warning()
naughty.notify {
icon = warning_msg_icon,
icon_size = 100,
text = warning_msg_text,
title = warning_msg_title,
timeout = 25, -- show the warning for a longer time
hover_timeout = 0.5,
position = warning_msg_position,
bg = "#F06060",
fg = "#EEE9EF",
width = 300,
}
end
local function update_widget(widget, stdout)
local charge = 0
local status
for s in stdout:gmatch("[^\r\n]+") do
local cur_status, charge_str, _ = string.match(s, '.+: ([%a%s]+), (%d?%d?%d)%%,?(.*)')
if cur_status ~= nil and charge_str ~=nil then
local cur_charge = tonumber(charge_str)
if cur_charge > charge then
status = cur_status
charge = cur_charge
2019-06-02 15:46:41 +02:00
end
end
end
widget.value = charge
if status == 'Charging' then
text_with_background.bg = charging_color
text_with_background.fg = '#000000'
else
text_with_background.bg = '#00000000'
text_with_background.fg = main_color
end
if show_current_level == true then
--- if battery is fully charged (100) there is not enough place for three digits, so we don't show any text
text.text = charge == 100
and ''
or string.format('%d', charge)
else
text.text = ''
end
if charge < 15 and charge > 0 then
widget.colors = { low_level_color }
if enable_battery_warning and 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()
show_battery_warning()
end
elseif charge > 15 and charge < 40 then
widget.colors = { medium_level_color }
else
widget.colors = { main_color }
end
end
2020-12-06 20:47:40 +01:00
watch("acpi", timeout, update_widget, batteryarc_widget)
-- Popup with battery info
local notification
2020-11-20 16:44:42 +01:00
local function show_battery_status()
awful.spawn.easy_async([[bash -c 'acpi']],
function(stdout, _, _, _)
naughty.destroy(notification)
notification = naughty.notify {
text = stdout,
title = "Battery status",
timeout = 5,
width = 200,
position = notification_position,
}
end)
end
2020-11-20 16:44:42 +01:00
if show_notification_mode == 'on_hover' then
2020-12-06 20:47:40 +01:00
batteryarc_widget:connect_signal("mouse::enter", function() show_battery_status() end)
batteryarc_widget:connect_signal("mouse::leave", function() naughty.destroy(notification) end)
2020-11-20 16:44:42 +01:00
elseif show_notification_mode == 'on_click' then
2020-12-06 20:47:40 +01:00
batteryarc_widget:connect_signal('button::press', function(_, _, _, button)
2020-11-20 16:44:42 +01:00
if (button == 1) then show_battery_status() end
end)
end
2020-12-06 20:47:40 +01:00
return batteryarc_widget
2017-10-09 23:14:03 +02:00
2017-10-05 02:46:09 +02:00
end
2017-12-11 23:09:22 +01:00
2020-12-06 20:47:40 +01:00
return setmetatable(batteryarc_widget, { __call = function(_, ...)
return worker(...)
end })