summaryrefslogtreecommitdiff
path: root/experiments/volume/widgets/icon-widget.lua
blob: 6725e6d2592a3c7e6dd47d17c95afe8b784c55bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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 {
        {
            id = "icon",
            resize = false,
            widget = wibox.widget.imagebox,
        },
        valign = 'center',
        layout = wibox.container.place,
        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