All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
4 Licensed under GNU General Public License v2
5 * (c) 2016, Luke Bonham
9 local read_pipe = require("lain.helpers").read_pipe
10 local newtimer = require("lain.helpers").newtimer
11 local wibox = require("wibox")
13 local string = { match = string.match,
14 format = string.format }
16 local setmetatable = setmetatable
19 -- lain.widgets.pulseaudio
22 local function worker(args)
23 local args = args or {}
24 local timeout = args.timeout or 5
25 local settings = args.settings or function() end
26 local scallback = args.scallback
28 pulseaudio.cmd = args.cmd or string.format("pacmd list-sinks | sed -n -e '0,/*/d' -e '/base volume/d' -e '/volume:/p' -e '/muted:/p'")
29 pulseaudio.widget = wibox.widget.textbox('')
31 function pulseaudio.update()
32 if scallback then pulseaudio.cmd = scallback() end
33 local s = read_pipe(pulseaudio.cmd)
36 volume_now.left = tonumber(string.match(s, ":.-(%d+)%%"))
37 volume_now.right = tonumber(string.match(s, ":.-(%d+)%%"))
38 volume_now.muted = string.match(s, "muted: (%S+)")
40 widget = pulseaudio.widget
44 newtimer(string.format("pulseaudio-%s", timeout), timeout, pulseaudio.update)
46 return setmetatable(pulseaudio, { __index = pulseaudio.widget })
49 return setmetatable(pulseaudio, { __call = function(_, ...) return worker(...) end })