undo 'set card' from projektile/master

This commit is contained in:
luke bonham 2014-09-26 12:41:35 +02:00
parent eac8845c14
commit c4c149d2df
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 -c 1"
local channel = args.channel or "Master"
local settings = args.settings or function() end
alsa.widget = wibox.widget.textbox('')
function alsa.update()
local f = assert(io.popen('amixer get ' .. channel))
local mixer = f:read("*all")
local f = assert(io.popen('amixer -M get ' .. channel))
local mixer = f:read("*a")
f:close()
volume_now = {}