Converting volume level to number in ALSA widget

This commit is contained in:
bzgec 2021-02-25 12:50:18 +01:00
parent 10076e1d69
commit c28071d599
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ local function factory(args)
helpers.async(format_cmd, function(mixer)
local l,s = string.match(mixer, "([%d]+)%%.*%[([%l]*)")
if alsa.last.level ~= l or alsa.last.status ~= s then
volume_now = { level = l, status = s }
volume_now = { level = tonumber(l), status = s }
widget = alsa.widget
settings()
alsa.last = volume_now