1 2 3 4 5 6 7 8 9 10 11
widget = { plugin = 'alsa', cb = function(t) if t.mute then return '[mute]' else local percent = (t.vol.cur - t.vol.min) / (t.vol.max - t.vol.min) * 100 return string.format('[%3d%%]', math.floor(0.5 + percent)) end end, }