aboutsummaryrefslogtreecommitdiffstats
path: root/.config/luastatus-scripts-dwm/alsa.lua
blob: 054a80691144a85af286d3e5bc0e68ae6470ae59 (plain)
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,
}