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

112 lines
3.5 KiB
Lua
Raw Normal View History

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
-- only text
local text = wibox.widget {
id = "txt",
font = "Play 5",
widget = wibox.widget.textbox
}
-- mirror the text, because the whole widget will be mirrored after
local mirrored_text = wibox.container.mirror(text, { horizontal = true })
-- mirrored text with background
local mirrored_text_with_background = wibox.container.background(mirrored_text)
local batteryarc = wibox.widget {
mirrored_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
2017-10-09 23:14:03 +02:00
forced_height = 17,
forced_width = 17,
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,
}
2017-10-09 23:14:03 +02:00
-- mirror the widget, so that chart value increases clockwise
batteryarc_widget = wibox.container.mirror(batteryarc, { horizontal = true })
watch("acpi", 10,
2017-10-05 02:46:09 +02:00
function(widget, stdout, stderr, exitreason, exitcode)
local batteryType
local _, status, charge_str, time = string.match(stdout, '(.+): (%a+), (%d?%d%d)%%,? ?.*')
local charge = tonumber(charge_str)
widget.value = charge / 100
2017-10-09 23:14:03 +02:00
if status == 'Charging' then
mirrored_text_with_background.bg = beautiful.widget_green
mirrored_text_with_background.fg = beautiful.widget_black
else
mirrored_text_with_background.bg = beautiful.widget_transparent
mirrored_text_with_background.fg = beautiful.widget_main_color
end
if charge < 15 then
batteryarc.colors = { beautiful.widget_red }
if status ~= 'Charging' then
show_battery_warning()
end
elseif charge > 15 and charge < 40 then
batteryarc.colors = { beautiful.widget_yellow }
else
batteryarc.colors = { beautiful.widget_main_color }
end
text.text = charge
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