Converting volume level to number in ALSA widget

This commit is contained in:
bzgec 2021-02-25 12:50:18 +01:00 committed by Luca Capezzuto
parent 3d4bb0b1d3
commit 47a2da364f
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