2016-08-12 23:04:59 +02:00
|
|
|
--[[
|
2017-05-25 15:41:27 +02:00
|
|
|
Copyright 2017 Stefano Mazzucco <stefano AT curso DOT re>
|
2016-08-12 23:04:59 +02:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2017-05-25 15:41:27 +02:00
|
|
|
This program was inspired by the
|
2016-08-12 23:04:59 +02:00
|
|
|
[Awesome Pulseaudio Widget (APW)](https://github.com/mokasin/apw)
|
|
|
|
]]
|
|
|
|
|
2017-05-25 15:41:27 +02:00
|
|
|
local awesome = awesome -- luacheck: ignore
|
|
|
|
local string = string
|
|
|
|
|
2016-08-12 23:04:59 +02:00
|
|
|
local awful = require("awful")
|
2017-05-25 15:41:27 +02:00
|
|
|
local gears = require("gears")
|
2016-08-12 23:04:59 +02:00
|
|
|
|
|
|
|
local wibox = require("wibox")
|
|
|
|
local beautiful = require("beautiful")
|
|
|
|
local naughty = require("naughty")
|
|
|
|
|
|
|
|
local pulse = require("pulseaudio_dbus")
|
|
|
|
|
|
|
|
local icon_theme = "/usr/share/icons/Adwaita/scalable/status"
|
|
|
|
local icon_extension = ".svg"
|
|
|
|
|
|
|
|
icon_theme = beautiful.pulse_icon_theme or icon_theme
|
|
|
|
icon_extension = beautiful.pulse_icon_extension or icon_extension
|
|
|
|
|
|
|
|
local icon = {
|
|
|
|
high = icon_theme .. "/audio-volume-high-symbolic" .. icon_extension,
|
|
|
|
med = icon_theme .. "/audio-volume-medium-symbolic" .. icon_extension,
|
|
|
|
low = icon_theme .. "/audio-volume-low-symbolic" .. icon_extension,
|
|
|
|
muted = icon_theme .. "/audio-volume-muted-symbolic" .. icon_extension
|
|
|
|
}
|
|
|
|
|
2017-05-25 15:41:27 +02:00
|
|
|
local widget = wibox.widget.imagebox()
|
|
|
|
widget.tooltip = awful.tooltip({ objects = { widget },})
|
2016-08-12 23:04:59 +02:00
|
|
|
|
2017-05-25 15:41:27 +02:00
|
|
|
function widget:update_appearance(v)
|
|
|
|
local i, msg
|
2016-08-12 23:04:59 +02:00
|
|
|
|
2017-05-25 15:41:27 +02:00
|
|
|
if v == "Muted" then
|
|
|
|
msg = v
|
2016-08-12 23:04:59 +02:00
|
|
|
i = icon.muted
|
|
|
|
else
|
2017-05-25 15:41:27 +02:00
|
|
|
v = v == "Unmuted" and self.sink:get_volume_percent()[1] or tonumber(v)
|
|
|
|
msg = string.format("%d%%", v)
|
|
|
|
if v <= 33 then
|
|
|
|
i = icon.low
|
|
|
|
elseif v <= 66 then
|
|
|
|
i = icon.med
|
|
|
|
else
|
|
|
|
i = icon.high
|
|
|
|
end
|
2016-08-12 23:04:59 +02:00
|
|
|
end
|
|
|
|
|
2017-05-25 15:41:27 +02:00
|
|
|
self:set_image(i)
|
|
|
|
self.tooltip:set_text(msg)
|
|
|
|
|
2016-08-12 23:04:59 +02:00
|
|
|
end
|
|
|
|
|
2017-05-25 15:41:27 +02:00
|
|
|
function widget.notify(v)
|
|
|
|
local msg = tonumber(v) and string.format("%d%%", v) or v
|
|
|
|
naughty.notify({text=msg, timeout=1})
|
2016-08-12 23:04:59 +02:00
|
|
|
end
|
|
|
|
|
2017-05-25 15:41:27 +02:00
|
|
|
function widget:update_sink(object_path)
|
|
|
|
self.sink = pulse.get_sink(self.connection, object_path)
|
2016-08-12 23:04:59 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function widget.volume_up()
|
2017-05-25 15:41:27 +02:00
|
|
|
if not widget.sink:is_muted() then
|
2016-08-12 23:04:59 +02:00
|
|
|
widget.sink:volume_up()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function widget.volume_down()
|
2017-05-25 15:41:27 +02:00
|
|
|
if not widget.sink:is_muted() then
|
2016-08-12 23:04:59 +02:00
|
|
|
widget.sink:volume_down()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function widget.toggle_muted()
|
|
|
|
widget.sink:toggle_muted()
|
|
|
|
end
|
|
|
|
|
2017-05-25 15:41:27 +02:00
|
|
|
function widget:kill_client()
|
|
|
|
if type(self.server_pid) == "number" then
|
|
|
|
awful.spawn("kill -TERM " .. self.server_pid)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function widget:run_client()
|
|
|
|
|
|
|
|
local pid = awful.spawn.with_line_callback(
|
|
|
|
[[lua -e 'require("pulseaudio_widget_client")']],
|
|
|
|
{
|
|
|
|
stdout = function (line)
|
|
|
|
local v, found, _
|
|
|
|
|
|
|
|
v, found = line:gsub("^(VolumeUpdated:%s+)(%d)", "%2")
|
|
|
|
if found ~= 0 then
|
|
|
|
self:update_appearance(v)
|
|
|
|
widget.notify(v)
|
|
|
|
end
|
|
|
|
|
|
|
|
v, found = line:gsub("^(MuteUpdated:%s+)(%w)", "%2")
|
|
|
|
if found ~= 0 then
|
|
|
|
self:update_appearance(v)
|
|
|
|
widget.notify(v)
|
|
|
|
end
|
|
|
|
|
|
|
|
v, found = line:gsub("^(NewSink:%s+)(/.*%w)", "%2")
|
|
|
|
if found ~=0 then
|
|
|
|
self:update_sink(v)
|
2017-05-25 23:07:53 +02:00
|
|
|
local volume = self.sink:is_muted() and "Muted" or self.sink:get_volume_percent()[1]
|
2017-05-25 15:41:27 +02:00
|
|
|
self:update_appearance(volume)
|
|
|
|
widget.notify(volume)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
})
|
|
|
|
|
|
|
|
self.server_pid = pid
|
2016-08-12 23:04:59 +02:00
|
|
|
end
|
|
|
|
|
2017-05-25 15:41:27 +02:00
|
|
|
widget:buttons(gears.table.join(
|
2016-08-12 23:04:59 +02:00
|
|
|
awful.button({ }, 1, widget.toggle_muted),
|
2017-05-25 15:41:27 +02:00
|
|
|
awful.button({ }, 3, function () awful.spawn(widget.mixer) end),
|
2016-08-12 23:04:59 +02:00
|
|
|
awful.button({ }, 4, widget.volume_up),
|
|
|
|
awful.button({ }, 5, widget.volume_down)))
|
|
|
|
|
2017-05-25 15:41:27 +02:00
|
|
|
awesome.connect_signal("exit", function () widget:kill_client() end)
|
|
|
|
|
|
|
|
function widget:init()
|
|
|
|
local status, address = pcall(pulse.get_address)
|
|
|
|
if not status then
|
|
|
|
naughty.notify({title="Error while loading the PulseAudio widget",
|
|
|
|
text=address,
|
|
|
|
preset=naughty.config.presets.critical})
|
|
|
|
return self
|
|
|
|
end
|
|
|
|
|
|
|
|
self.mixer = "pavucontrol"
|
|
|
|
|
|
|
|
self.connection = pulse.get_connection(address)
|
|
|
|
self.core = pulse.get_core(self.connection)
|
|
|
|
local sink_path = assert(self.core:get_sinks()[1], "No sinks found")
|
|
|
|
|
|
|
|
self:update_sink(sink_path)
|
2017-05-25 23:07:53 +02:00
|
|
|
local volume = self.sink:is_muted() and "Muted" or self.sink:get_volume_percent()[1]
|
2017-05-25 15:41:27 +02:00
|
|
|
self:update_appearance(volume)
|
|
|
|
|
|
|
|
self:run_client()
|
|
|
|
|
|
|
|
self.__index = self
|
|
|
|
|
|
|
|
return self
|
|
|
|
end
|
2016-08-12 23:04:59 +02:00
|
|
|
|
2017-05-25 15:41:27 +02:00
|
|
|
return widget:init()
|