This commit is contained in:
projektile 2014-09-22 11:29:46 -04:00 committed by copycat-killer
parent ced8e6d8f7
commit 4e4bf44d2f
1 changed files with 3 additions and 3 deletions

View File

@ -23,14 +23,14 @@ local alsa = {}
local function worker(args)
local args = args or {}
local timeout = args.timeout or 5
local channel = args.channel or "Master"
local channel = args.channel or "Master -c 1"
local settings = args.settings or function() end
alsa.widget = wibox.widget.textbox('')
function alsa.update()
local f = assert(io.popen('amixer -M get ' .. channel))
local mixer = f:read("*a")
local f = assert(io.popen('amixer get ' .. channel))
local mixer = f:read("*all")
f:close()
volume_now = {}