2020-11-01 20:03:06 +01:00
|
|
|
local wibox = require("wibox")
|
|
|
|
|
|
|
|
local widget = {}
|
|
|
|
|
|
|
|
local WIDGET_DIR = os.getenv("HOME") .. '/.config/awesome/awesome-wm-widgets/experiments/volume/icons/'
|
|
|
|
|
|
|
|
function widget.get_widget()
|
|
|
|
|
|
|
|
return wibox.widget {
|
|
|
|
{
|
2020-11-09 21:54:33 +01:00
|
|
|
id = "icon",
|
|
|
|
resize = false,
|
|
|
|
widget = wibox.widget.imagebox,
|
2020-11-01 20:03:06 +01:00
|
|
|
},
|
2020-11-09 21:54:33 +01:00
|
|
|
valign = 'center',
|
|
|
|
layout = wibox.container.place,
|
2020-11-01 20:03:06 +01:00
|
|
|
set_volume_level = function(self, new_value)
|
|
|
|
local new_value_num = tonumber(new_value)
|
|
|
|
local volume_icon_name = ''
|
|
|
|
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
|
|
|
|
self:get_children_by_id('icon')[1]:set_image(WIDGET_DIR .. volume_icon_name .. '.svg')
|
|
|
|
end,
|
|
|
|
mute = function(self) self:get_children_by_id('icon')[1]:set_image(WIDGET_DIR .. 'audio-volume-muted-symbolic.svg') end,
|
|
|
|
unmute = function() end,
|
|
|
|
}
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
return widget
|