2017-01-25 17:56:22 +01:00
|
|
|
-- {{{ Grab environment
|
|
|
|
local tonumber = tonumber
|
|
|
|
local string = { match = string.match }
|
2019-05-26 19:17:21 +02:00
|
|
|
local helpers = require("vicious.helpers")
|
|
|
|
local spawn = require("vicious.spawn")
|
2017-01-25 17:56:22 +01:00
|
|
|
-- }}}
|
|
|
|
|
|
|
|
|
|
|
|
-- Volume: provides volume levels and state of requested mixer
|
|
|
|
-- vicious.widgets.volume_freebsd
|
|
|
|
local volume_freebsd = {}
|
|
|
|
|
|
|
|
|
|
|
|
-- {{{ Volume widget type
|
2019-05-16 13:52:22 +02:00
|
|
|
local STATE = { on = '🔉', off = '🔈' }
|
2017-01-25 17:56:22 +01:00
|
|
|
|
2019-05-16 13:52:22 +02:00
|
|
|
local function parse(stdout, stderr, exitreason, exitcode)
|
|
|
|
-- Capture mixer control state, e.g. 42 : 42
|
2019-05-27 09:42:22 +02:00
|
|
|
local voll, volr = string.match(stdout, "([%d]+):([%d]+)\n$")
|
2019-05-16 13:52:22 +02:00
|
|
|
if voll == "0" and volr == "0" then return { 0, 0, STATE.off } end
|
|
|
|
return { tonumber(voll), tonumber(volr), STATE.on }
|
|
|
|
end
|
2017-01-25 17:56:22 +01:00
|
|
|
|
2019-05-16 13:52:22 +02:00
|
|
|
function volume_freebsd.async(format, warg, callback)
|
|
|
|
if not warg then return callback{} end
|
2019-05-27 09:42:22 +02:00
|
|
|
spawn.easy_async("mixer " .. helpers.shellquote(warg),
|
2019-05-16 13:52:22 +02:00
|
|
|
function (...) callback(parse(...)) end)
|
2017-01-25 17:56:22 +01:00
|
|
|
end
|
|
|
|
-- }}}
|
|
|
|
|
2019-05-16 13:52:22 +02:00
|
|
|
return helpers.setasyncall(volume_freebsd)
|