vicious/volume.lua

34 lines
870 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 = { 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()
local volume_level = string.match(mixer, "([%d]?[%d]?[%d])%%")
-- Don't break progressbars
2009-09-14 17:25:23 +02:00
if volume_level == nil then return {0} end
return {volume_level}
end
-- }}}
setmetatable(_M, { __call = function(_, ...) return worker(...) end })