X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/24ca5856dcc2995af4662d0c4eedb7f8452da53a..3136a45015a6662f191c4c8aea6fee19aff76169:/widget/alsabar.lua diff --git a/widget/alsabar.lua b/widget/alsabar.lua index 125b992..b253d4b 100644 --- a/widget/alsabar.lua +++ b/widget/alsabar.lua @@ -113,9 +113,16 @@ local function factory(args) preset.title = preset.title .. " Muted" end - int = math.modf((alsabar._current_level / 100) * awful.screen.focused().mywibox.height) + local wib = awful.screen.focused().mywibox + + local tot = wib.height + if wib.position == "left" or wib.position == "right" then + tot = wib.width + end + + int = math.modf((alsabar._current_level / 100) * tot) preset.text = string.format("[%s%s]", string.rep("|", int), - string.rep(" ", awful.screen.focused().mywibox.height - int)) + string.rep(" ", tot - int)) if alsabar.followtag then preset.screen = awful.screen.focused() end