vicious/volume.lua

38 lines
948 B
Lua
Raw Normal View History

2009-09-29 22:33:19 +02:00
---------------------------------------------------
-- Licensed under the GNU General Public License v2
-- * (c) 2009, Adrian C. <anrxc.sysphere.org>
---------------------------------------------------
-- {{{ Grab environment
local io = { popen = io.popen }
local setmetatable = setmetatable
local string = {
find = string.find,
match = string.match
}
-- }}}
-- Volume: provides volume levels of requested ALSA mixers
module("vicious.volume")
-- {{{ Volume widget type
2009-08-07 17:41:10 +02:00
local function worker(format, channel)
-- Get mixer data
local f = io.popen("amixer get " .. channel)
local mixer = f:read("*all")
f:close()
2009-10-05 00:10:47 +02:00
local vol = string.match(mixer, "([%d]?[%d]?[%d])%%")
-- If muted return 0 (not "Mute") so we dont break progressbars
2009-10-05 00:10:47 +02:00
if string.find(mixer, "%[off%]") or vol == nil then
vol = 0
end
2009-10-05 00:10:47 +02:00
return {vol}
end
-- }}}
setmetatable(_M, { __call = function(_, ...) return worker(...) end })