X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/24ca5856dcc2995af4662d0c4eedb7f8452da53a..3136a45015a6662f191c4c8aea6fee19aff76169:/widget/pulsebar.lua diff --git a/widget/pulsebar.lua b/widget/pulsebar.lua index 78b7d49..30fbb40 100644 --- a/widget/pulsebar.lua +++ b/widget/pulsebar.lua @@ -123,9 +123,16 @@ local function factory(args) preset.title = preset.title .. " muted" end - int = math.modf((pulsebar._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((pulsebar._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 pulsebar.followtag then preset.screen = awful.screen.focused() end