2017-12-09 20:39:46 +01:00
|
|
|
-------------------------------------------------
|
|
|
|
-- Battery Widget for Awesome Window Manager
|
|
|
|
-- Shows the battery status using the ACPI tool
|
|
|
|
-- More details could be found here:
|
|
|
|
-- https://github.com/streetturtle/awesome-wm-widgets/tree/master/battery-widget
|
|
|
|
|
|
|
|
-- @author Pavel Makhov
|
|
|
|
-- @copyright 2017 Pavel Makhov
|
|
|
|
-------------------------------------------------
|
|
|
|
|
2017-01-23 17:01:16 +01:00
|
|
|
local awful = require("awful")
|
|
|
|
local naughty = require("naughty")
|
2017-01-26 04:48:35 +01:00
|
|
|
local watch = require("awful.widget.watch")
|
2017-12-07 03:07:35 +01:00
|
|
|
local wibox = require("wibox")
|
2019-12-25 02:36:44 +01:00
|
|
|
local gfs = require("gears.filesystem")
|
2019-12-20 01:14:22 +01:00
|
|
|
local dpi = require('beautiful').xresources.apply_dpi
|
2017-01-23 17:01:16 +01:00
|
|
|
|
2017-01-31 03:38:50 +01:00
|
|
|
-- acpi sample outputs
|
2017-01-26 04:48:35 +01:00
|
|
|
-- Battery 0: Discharging, 75%, 01:51:38 remaining
|
|
|
|
-- Battery 0: Charging, 53%, 00:57:43 until charged
|
2017-01-23 17:01:16 +01:00
|
|
|
|
2017-12-07 03:07:35 +01:00
|
|
|
local HOME = os.getenv("HOME")
|
2020-12-06 20:47:40 +01:00
|
|
|
local WIDGET_DIR = HOME .. '/.config/awesome/awesome-wm-widgets/battery-widget'
|
2017-02-04 18:57:56 +01:00
|
|
|
|
2019-12-20 01:14:22 +01:00
|
|
|
local battery_widget = {}
|
2020-12-06 20:47:40 +01:00
|
|
|
local function worker(user_args)
|
|
|
|
local args = user_args or {}
|
2019-12-20 01:51:41 +01:00
|
|
|
|
|
|
|
local font = args.font or 'Play 8'
|
2020-02-22 19:19:01 +01:00
|
|
|
local path_to_icons = args.path_to_icons or "/usr/share/icons/Arc/status/symbolic/"
|
2019-12-20 01:51:41 +01:00
|
|
|
local show_current_level = args.show_current_level or false
|
|
|
|
local margin_left = args.margin_left or 0
|
|
|
|
local margin_right = args.margin_right or 0
|
|
|
|
|
2020-02-22 19:40:18 +01:00
|
|
|
local display_notification = args.display_notification or false
|
2020-11-01 22:37:11 +01:00
|
|
|
local display_notification_onClick = args.display_notification_onClick or true
|
2019-12-20 01:14:22 +01:00
|
|
|
local position = args.notification_position or "top_right"
|
2020-09-19 10:08:15 +02:00
|
|
|
local timeout = args.timeout or 10
|
2019-12-20 01:51:41 +01:00
|
|
|
|
|
|
|
local warning_msg_title = args.warning_msg_title or 'Huston, 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'
|
2020-04-05 11:23:37 +02:00
|
|
|
local enable_battery_warning = args.enable_battery_warning
|
|
|
|
if enable_battery_warning == nil then
|
|
|
|
enable_battery_warning = true
|
|
|
|
end
|
2019-12-20 01:51:41 +01:00
|
|
|
|
2020-02-22 19:19:01 +01:00
|
|
|
if not gfs.dir_readable(path_to_icons) then
|
2019-12-25 02:36:44 +01:00
|
|
|
naughty.notify{
|
|
|
|
title = "Battery Widget",
|
2020-02-22 19:19:01 +01:00
|
|
|
text = "Folder with icons doesn't exist: " .. path_to_icons,
|
2019-12-25 02:36:44 +01:00
|
|
|
preset = naughty.config.presets.critical
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
local icon_widget = wibox.widget {
|
2019-12-20 01:14:22 +01:00
|
|
|
{
|
|
|
|
id = "icon",
|
|
|
|
widget = wibox.widget.imagebox,
|
|
|
|
resize = false
|
|
|
|
},
|
2021-12-11 02:53:09 +01:00
|
|
|
valign = 'center',
|
2021-03-01 23:24:04 +01:00
|
|
|
layout = wibox.container.place,
|
2019-12-20 01:14:22 +01:00
|
|
|
}
|
2019-12-20 01:51:41 +01:00
|
|
|
local level_widget = wibox.widget {
|
|
|
|
font = font,
|
|
|
|
widget = wibox.widget.textbox
|
|
|
|
}
|
2019-12-20 01:14:22 +01:00
|
|
|
|
2019-12-20 01:51:41 +01:00
|
|
|
battery_widget = wibox.widget {
|
|
|
|
icon_widget,
|
|
|
|
level_widget,
|
|
|
|
layout = wibox.layout.fixed.horizontal,
|
|
|
|
}
|
2019-12-20 01:14:22 +01:00
|
|
|
-- Popup with battery info
|
|
|
|
-- One way of creating a pop-up notification - naughty.notify
|
|
|
|
local notification
|
|
|
|
local function show_battery_status(batteryType)
|
|
|
|
awful.spawn.easy_async([[bash -c 'acpi']],
|
2017-06-06 03:17:12 +02:00
|
|
|
function(stdout, _, _, _)
|
2019-03-26 11:18:21 +01:00
|
|
|
naughty.destroy(notification)
|
2017-06-06 03:17:12 +02:00
|
|
|
notification = naughty.notify{
|
|
|
|
text = stdout,
|
|
|
|
title = "Battery status",
|
2020-02-22 19:19:01 +01:00
|
|
|
icon = path_to_icons .. batteryType .. ".svg",
|
2019-12-20 01:14:22 +01:00
|
|
|
icon_size = dpi(16),
|
|
|
|
position = position,
|
2017-06-06 03:17:12 +02:00
|
|
|
timeout = 5, hover_timeout = 0.5,
|
|
|
|
width = 200,
|
2020-04-15 19:00:10 +02:00
|
|
|
screen = mouse.screen
|
2017-06-06 03:17:12 +02:00
|
|
|
}
|
|
|
|
end
|
2019-12-20 01:14:22 +01:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
-- 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
|
|
|
|
|
|
|
|
local function show_battery_warning()
|
2019-12-20 01:51:41 +01:00
|
|
|
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,
|
2019-12-20 01:14:22 +01:00
|
|
|
bg = "#F06060",
|
|
|
|
fg = "#EEE9EF",
|
|
|
|
width = 300,
|
2020-04-15 19:00:10 +02:00
|
|
|
screen = mouse.screen
|
2019-12-20 01:14:22 +01:00
|
|
|
}
|
|
|
|
end
|
|
|
|
local last_battery_check = os.time()
|
|
|
|
local batteryType = "battery-good-symbolic"
|
|
|
|
|
2020-09-19 10:08:15 +02:00
|
|
|
watch("acpi -i", timeout,
|
2020-12-06 20:47:40 +01:00
|
|
|
function(widget, stdout)
|
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
|
2020-12-06 20:47:40 +01:00
|
|
|
local status, charge_str, _ = string.match(s, '.+: (%a+), (%d?%d?%d)%%,?(.*)')
|
2020-03-26 20:34:46 +01:00
|
|
|
if 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
|
2020-12-06 20:47:40 +01:00
|
|
|
for _, cap in ipairs(capacities) do
|
2018-11-26 22:12:15 +01:00
|
|
|
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
|
2021-04-26 16:44:05 +02:00
|
|
|
if capacities[i] ~= nil then
|
|
|
|
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-06-16 06:20:30 +02:00
|
|
|
|
2021-04-26 16:44:05 +02:00
|
|
|
charge = charge + batt.charge * capacities[i]
|
|
|
|
end
|
2018-06-16 06:20:30 +02:00
|
|
|
end
|
2018-11-26 22:21:48 +01:00
|
|
|
charge = charge / capacity
|
2018-06-16 06:20:30 +02:00
|
|
|
|
2019-12-25 02:36:44 +01:00
|
|
|
if show_current_level then
|
|
|
|
level_widget.text = string.format('%d%%', charge)
|
|
|
|
end
|
2019-12-20 01:51:41 +01:00
|
|
|
|
2017-12-07 03:07:35 +01:00
|
|
|
if (charge >= 0 and charge < 15) then
|
|
|
|
batteryType = "battery-empty%s-symbolic"
|
2020-04-05 11:23:37 +02:00
|
|
|
if enable_battery_warning and status ~= 'Charging' and os.difftime(os.time(), last_battery_check) > 300 then
|
2018-06-16 06:20:30 +02:00
|
|
|
-- if 5 minutes have elapsed since the last warning
|
2019-08-01 10:35:16 +02:00
|
|
|
last_battery_check = os.time()
|
2018-06-16 06:39:14 +02:00
|
|
|
|
2017-12-07 03:07:35 +01:00
|
|
|
show_battery_warning()
|
|
|
|
end
|
|
|
|
elseif (charge >= 15 and charge < 40) then batteryType = "battery-caution%s-symbolic"
|
|
|
|
elseif (charge >= 40 and charge < 60) then batteryType = "battery-low%s-symbolic"
|
|
|
|
elseif (charge >= 60 and charge < 80) then batteryType = "battery-good%s-symbolic"
|
|
|
|
elseif (charge >= 80 and charge <= 100) then batteryType = "battery-full%s-symbolic"
|
|
|
|
end
|
2018-06-16 06:20:30 +02:00
|
|
|
|
2017-12-07 03:07:35 +01:00
|
|
|
if status == 'Charging' then
|
|
|
|
batteryType = string.format(batteryType, '-charging')
|
|
|
|
else
|
|
|
|
batteryType = string.format(batteryType, '')
|
|
|
|
end
|
2018-06-16 06:20:30 +02:00
|
|
|
|
2020-02-22 19:19:01 +01:00
|
|
|
widget.icon:set_image(path_to_icons .. batteryType .. ".svg")
|
2017-12-07 03:07:35 +01:00
|
|
|
|
|
|
|
-- Update popup text
|
|
|
|
-- battery_popup.text = string.gsub(stdout, "\n$", "")
|
|
|
|
end,
|
2019-12-20 01:51:41 +01:00
|
|
|
icon_widget)
|
2017-12-07 03:07:35 +01:00
|
|
|
|
2019-12-20 01:14:22 +01:00
|
|
|
if display_notification then
|
|
|
|
battery_widget:connect_signal("mouse::enter", function() show_battery_status(batteryType) end)
|
|
|
|
battery_widget:connect_signal("mouse::leave", function() naughty.destroy(notification) end)
|
2020-11-01 22:37:11 +01:00
|
|
|
elseif display_notification_onClick then
|
2020-12-06 20:47:40 +01:00
|
|
|
battery_widget:connect_signal("button::press", function(_,_,_,button)
|
2020-11-01 22:37:11 +01:00
|
|
|
if (button == 3) then show_battery_status(batteryType) end
|
|
|
|
end)
|
|
|
|
battery_widget:connect_signal("mouse::leave", function() naughty.destroy(notification) end)
|
2019-12-20 01:14:22 +01:00
|
|
|
end
|
2020-12-06 20:47:40 +01:00
|
|
|
|
2019-12-20 01:51:41 +01:00
|
|
|
return wibox.container.margin(battery_widget, margin_left, margin_right)
|
2019-12-20 01:14:22 +01:00
|
|
|
end
|
2017-12-07 03:07:35 +01:00
|
|
|
|
2019-12-20 01:14:22 +01:00
|
|
|
return setmetatable(battery_widget, { __call = function(_, ...) return worker(...) end })
|