aboutsummaryrefslogtreecommitdiffstats
path: root/.config/luastatus-scripts-dwm/pulse.lua
blob: 59b73e808571c94761a695c0d5472165728c93a4 (plain)
1
2
3
4
5
6
7
8
9
10
widget = {
    plugin = 'pulse',
    cb = function(t)
        if t.mute then
            return '[mute]'
        end
        local percent = (t.cur / t.norm) * 100
        return string.format('[%3d%%]', math.floor(0.5 + percent))
    end,
}