2020-11-01 20:03:06 +01:00
|
|
|
local wibox = require("wibox")
|
2020-12-15 04:33:56 +01:00
|
|
|
local beautiful = require('beautiful')
|
2020-11-01 20:03:06 +01:00
|
|
|
|
|
|
|
local widget = {}
|
|
|
|
|
[volume] BREAKING CHANGE - new widget instead of old ones
Having three widgets for volume led to a problem of code duplication -
same logic was duplicated three times. However when an issue was
discovered and fixed, it was fixed in only one of three widgets.
So I decided to create a volume widget from scratch, adding new
features, such as selecting input/output, better responsiveness,
easily customizable widget ui (bar, text, icon, icon and text, arc).
Should close #199, #198, #185, #182, #47, #122, #183.
2021-03-20 01:49:00 +01:00
|
|
|
local ICON_DIR = os.getenv("HOME") .. '/.config/awesome/awesome-wm-widgets/volume-widget/icons/'
|
2020-11-01 20:03:06 +01:00
|
|
|
|
2020-12-15 04:33:56 +01:00
|
|
|
function widget.get_widget(widgets_args)
|
|
|
|
local args = widgets_args or {}
|
|
|
|
|
|
|
|
local font = args.font or beautiful.font
|
|
|
|
local icon_dir = args.icon_dir or ICON_DIR
|
2020-11-01 20:03:06 +01:00
|
|
|
|
|
|
|
return wibox.widget {
|
|
|
|
{
|
|
|
|
{
|
|
|
|
id = "icon",
|
|
|
|
resize = false,
|
|
|
|
widget = wibox.widget.imagebox,
|
|
|
|
},
|
|
|
|
valign = 'center',
|
|
|
|
layout = wibox.container.place
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id = 'txt',
|
2020-12-15 04:33:56 +01:00
|
|
|
font = font,
|
2020-11-01 20:03:06 +01:00
|
|
|
widget = wibox.widget.textbox
|
|
|
|
},
|
|
|
|
layout = wibox.layout.fixed.horizontal,
|
|
|
|
set_volume_level = function(self, new_value)
|
|
|
|
self:get_children_by_id('txt')[1]:set_text(new_value)
|
2020-12-06 20:47:40 +01:00
|
|
|
local volume_icon_name
|
2020-11-14 19:29:31 +01:00
|
|
|
if self.is_muted then
|
2020-12-15 04:33:56 +01:00
|
|
|
volume_icon_name = 'audio-volume-muted-symbolic'
|
2020-11-01 20:03:06 +01:00
|
|
|
else
|
2020-11-14 19:29:31 +01:00
|
|
|
local new_value_num = tonumber(new_value)
|
|
|
|
if (new_value_num >= 0 and new_value_num < 33) then
|
|
|
|
volume_icon_name="audio-volume-low-symbolic"
|
|
|
|
elseif (new_value_num < 66) then
|
|
|
|
volume_icon_name="audio-volume-medium-symbolic"
|
|
|
|
else
|
|
|
|
volume_icon_name="audio-volume-high-symbolic"
|
|
|
|
end
|
2020-11-01 20:03:06 +01:00
|
|
|
end
|
2020-12-15 04:33:56 +01:00
|
|
|
self:get_children_by_id('icon')[1]:set_image(icon_dir .. volume_icon_name .. '.svg')
|
2020-11-01 20:03:06 +01:00
|
|
|
end,
|
2020-11-14 19:29:31 +01:00
|
|
|
mute = function(self)
|
|
|
|
self.is_muted = true
|
2020-12-15 04:33:56 +01:00
|
|
|
self:get_children_by_id('icon')[1]:set_image(icon_dir .. 'audio-volume-muted-symbolic.svg')
|
2020-11-14 19:29:31 +01:00
|
|
|
end,
|
|
|
|
unmute = function(self)
|
|
|
|
self.is_muted = false
|
2020-12-15 04:33:56 +01:00
|
|
|
end
|
2020-11-01 20:03:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
return widget
|