2017-12-09 20:39:46 +01:00
|
|
|
-------------------------------------------------
|
|
|
|
-- Brightness Widget for Awesome Window Manager
|
|
|
|
-- Shows the brightness level of the laptop display
|
|
|
|
-- More details could be found here:
|
|
|
|
-- https://github.com/streetturtle/awesome-wm-widgets/tree/master/brightness-widget
|
|
|
|
|
|
|
|
-- @author Pavel Makhov
|
2019-05-03 03:35:30 +02:00
|
|
|
-- @copyright 2017-2019 Pavel Makhov
|
2017-12-09 20:39:46 +01:00
|
|
|
-------------------------------------------------
|
|
|
|
|
2017-01-31 03:38:50 +01:00
|
|
|
local wibox = require("wibox")
|
|
|
|
local watch = require("awful.widget.watch")
|
2018-10-08 17:07:28 +02:00
|
|
|
local spawn = require("awful.spawn")
|
2017-01-31 03:38:50 +01:00
|
|
|
|
2018-10-08 17:07:28 +02:00
|
|
|
local PATH_TO_ICON = "/usr/share/icons/Arc/status/symbolic/display-brightness-symbolic.svg"
|
|
|
|
local GET_BRIGHTNESS_CMD = "light -G" -- "xbacklight -get"
|
2019-02-11 14:34:28 +01:00
|
|
|
local INC_BRIGHTNESS_CMD = "light -A 5" -- "xbacklight -inc 5"
|
|
|
|
local DEC_BRIGHTNESS_CMD = "light -U 5" -- "xbacklight -dec 5"
|
2017-01-31 03:38:50 +01:00
|
|
|
|
2020-12-06 20:47:40 +01:00
|
|
|
local brightness_widget = {}
|
2019-05-03 03:35:30 +02:00
|
|
|
|
2020-12-06 20:47:40 +01:00
|
|
|
local function worker(user_args)
|
2019-05-03 03:35:30 +02:00
|
|
|
|
2020-12-06 20:47:40 +01:00
|
|
|
local args = user_args or {}
|
2019-05-03 03:35:30 +02:00
|
|
|
|
|
|
|
local get_brightness_cmd = args.get_brightness_cmd or GET_BRIGHTNESS_CMD
|
|
|
|
local inc_brightness_cmd = args.inc_brightness_cmd or INC_BRIGHTNESS_CMD
|
|
|
|
local dec_brightness_cmd = args.dec_brightness_cmd or DEC_BRIGHTNESS_CMD
|
|
|
|
local path_to_icon = args.path_to_icon or PATH_TO_ICON
|
|
|
|
local font = args.font or 'Play 9'
|
2020-09-19 10:08:15 +02:00
|
|
|
local timeout = args.timeout or 1
|
2019-05-03 03:35:30 +02:00
|
|
|
|
|
|
|
local brightness_text = wibox.widget.textbox()
|
|
|
|
brightness_text:set_font(font)
|
|
|
|
|
|
|
|
local brightness_icon = wibox.widget {
|
|
|
|
{
|
|
|
|
image = path_to_icon,
|
|
|
|
resize = false,
|
|
|
|
widget = wibox.widget.imagebox,
|
|
|
|
},
|
|
|
|
top = 3,
|
|
|
|
widget = wibox.container.margin
|
|
|
|
}
|
|
|
|
|
2020-12-06 20:47:40 +01:00
|
|
|
brightness_widget = wibox.widget {
|
2019-05-03 03:35:30 +02:00
|
|
|
brightness_icon,
|
|
|
|
brightness_text,
|
|
|
|
layout = wibox.layout.fixed.horizontal,
|
|
|
|
}
|
|
|
|
|
|
|
|
local update_widget = function(widget, stdout, _, _, _)
|
|
|
|
local brightness_level = tonumber(string.format("%.0f", stdout))
|
|
|
|
widget:set_text(" " .. brightness_level .. "%")
|
2020-12-06 20:47:40 +01:00
|
|
|
end
|
2019-05-03 03:35:30 +02:00
|
|
|
|
2020-12-06 20:47:40 +01:00
|
|
|
brightness_widget:connect_signal("button::press", function(_, _, _, button)
|
2019-05-03 03:35:30 +02:00
|
|
|
if (button == 4) then
|
|
|
|
spawn(inc_brightness_cmd, false)
|
|
|
|
elseif (button == 5) then
|
|
|
|
spawn(dec_brightness_cmd, false)
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
|
2020-09-19 10:08:15 +02:00
|
|
|
watch(get_brightness_cmd, timeout, update_widget, brightness_text)
|
2019-05-03 03:35:30 +02:00
|
|
|
|
2020-12-06 20:47:40 +01:00
|
|
|
return brightness_widget
|
2019-05-03 03:35:30 +02:00
|
|
|
end
|
|
|
|
|
2020-12-06 20:47:40 +01:00
|
|
|
return setmetatable(brightness_widget, { __call = function(_, ...)
|
2019-05-03 03:35:30 +02:00
|
|
|
return worker(...)
|
|
|
|
end })
|