2017-01-23 17:01:16 +01:00
|
|
|
local awful = require("awful")
|
2017-02-04 04:15:16 +01:00
|
|
|
local wibox = require("wibox")
|
|
|
|
local watch = require("awful.widget.watch")
|
|
|
|
local gears = require("gears")
|
2017-01-23 17:01:16 +01:00
|
|
|
|
2017-02-04 04:15:16 +01:00
|
|
|
local path_to_icons = "/usr/share/icons/Arc/status/symbolic/"
|
2017-01-23 17:01:16 +01:00
|
|
|
|
2017-02-04 04:15:16 +01:00
|
|
|
volume_widget = wibox.widget {
|
|
|
|
{
|
|
|
|
id = "icon",
|
|
|
|
image = path_to_icons .. "audio-volume-muted-symbolic.svg",
|
|
|
|
resize = false,
|
|
|
|
widget = wibox.widget.imagebox,
|
|
|
|
},
|
|
|
|
layout = wibox.container.margin(brightness_icon, 0, 0, 3),
|
|
|
|
set_image = function(self, path)
|
|
|
|
self.icon.image = path
|
|
|
|
end
|
|
|
|
}
|
2017-01-23 17:01:16 +01:00
|
|
|
|
2017-02-04 04:15:16 +01:00
|
|
|
watch(
|
|
|
|
'amixer -D pulse sget Master', 1,
|
|
|
|
function(widget, stdout, stderr, reason, exit_code)
|
2017-02-04 11:58:04 +01:00
|
|
|
local mute = string.match(stdout, "%[(o%D%D?)%]")
|
2017-02-04 04:15:16 +01:00
|
|
|
local volume = string.match(stdout, "(%d?%d?%d)%%")
|
|
|
|
volume = tonumber(string.format("% 3d", volume))
|
|
|
|
local volume_icon_name
|
2017-02-04 11:58:04 +01:00
|
|
|
if mute == "off" then volume_icon_name="audio-volume-muted-symbolic"
|
|
|
|
elseif (volume >= 0 and volume < 25) then volume_icon_name="audio-volume-muted-symbolic"
|
2017-02-04 04:15:16 +01:00
|
|
|
elseif (volume >= 25 and volume < 50) then volume_icon_name="audio-volume-low-symbolic"
|
|
|
|
elseif (volume >= 50 and volume < 75) then volume_icon_name="audio-volume-medium-symbolic"
|
|
|
|
elseif (volume >= 75 and volume <= 100) then volume_icon_name="audio-volume-high-symbolic"
|
|
|
|
end
|
|
|
|
volume_widget.image = path_to_icons .. volume_icon_name .. ".svg"
|
|
|
|
end
|
2017-02-04 11:58:04 +01:00
|
|
|
)
|