2017-01-23 17:01:16 +01:00
|
|
|
local wibox = require("wibox")
|
|
|
|
local awful = require("awful")
|
|
|
|
local naughty = require("naughty")
|
2017-01-26 04:48:35 +01:00
|
|
|
local watch = require("awful.widget.watch")
|
2017-01-23 17:01:16 +01:00
|
|
|
|
2017-02-02 02:52:08 +01:00
|
|
|
battery_widget = wibox.widget { widget = wibox.widget.imagebox }
|
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-01-31 03:38:50 +01:00
|
|
|
local path_to_icons = "/usr/share/icons/Arc-Icons/panel/22/"
|
2017-01-23 17:01:16 +01:00
|
|
|
|
2017-01-26 04:48:35 +01:00
|
|
|
watch(
|
|
|
|
"acpi", 10,
|
|
|
|
function(widget, stdout, stderr, exitreason, exitcode)
|
|
|
|
local batteryType
|
2017-01-31 03:38:50 +01:00
|
|
|
local _, status, charge, time = string.match(stdout, '(.+): (%a+), (%d%d)%%, (.+)')
|
2017-01-26 04:48:35 +01:00
|
|
|
charge = tonumber(charge)
|
|
|
|
if (charge >= 0 and charge < 20) then
|
|
|
|
batteryType="battery-empty"
|
|
|
|
show_battery_warning()
|
2017-01-23 17:01:16 +01:00
|
|
|
elseif (charge >= 20 and charge < 40) then batteryType="battery-caution"
|
|
|
|
elseif (charge >= 40 and charge < 60) then batteryType="battery-low"
|
|
|
|
elseif (charge >= 60 and charge < 80) then batteryType="battery-good"
|
|
|
|
elseif (charge >= 80 and charge <= 100) then batteryType="battery-full"
|
2017-01-26 04:48:35 +01:00
|
|
|
end
|
|
|
|
if status == 'Charging' then
|
|
|
|
batteryType = batteryType .. '-charging'
|
|
|
|
end
|
2017-02-02 02:52:08 +01:00
|
|
|
battery_widget.image = path_to_icons .. batteryType .. ".svg"
|
2017-01-26 04:48:35 +01:00
|
|
|
end
|
|
|
|
)
|
2017-01-23 17:01:16 +01:00
|
|
|
|
|
|
|
function show_battery_status()
|
2017-01-26 04:48:35 +01:00
|
|
|
awful.spawn.easy_async([[bash -c 'acpi']],
|
|
|
|
function(stdout, stderr, reason, exit_code)
|
|
|
|
naughty.notify{
|
|
|
|
text = stdout,
|
|
|
|
title = "Battery status",
|
|
|
|
timeout = 5, hover_timeout = 0.5,
|
|
|
|
width = 200,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
)
|
2017-01-23 17:01:16 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
function show_battery_warning()
|
2017-01-26 04:48:35 +01:00
|
|
|
naughty.notify{
|
|
|
|
text = "Huston, we have a problem",
|
|
|
|
title = "Battery is dying",
|
|
|
|
timeout = 5, hover_timeout = 0.5,
|
|
|
|
position = "bottom_right",
|
|
|
|
bg = "#F06060",
|
|
|
|
fg = "#EEE9EF",
|
|
|
|
width = 200,
|
2017-01-23 17:01:16 +01:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
-- popup with battery info
|
2017-02-02 02:52:08 +01:00
|
|
|
battery_widget:connect_signal("mouse::enter", function() show_battery_status() end)
|