Work on awesome bar

This commit is contained in:
buffet 2021-05-21 23:27:03 +00:00
parent 1ddc08c7fa
commit 57a15875d2

View file

@ -8,6 +8,7 @@ require('widgets.top-panel')
local TopPanel = function(s) local TopPanel = function(s)
-- TODO: gap around bar
-- Wiboxes are much more flexible than wibars simply for the fact that there are no defaults, however if you'd rather have the ease of a wibar you can replace this with the original wibar code -- Wiboxes are much more flexible than wibars simply for the fact that there are no defaults, however if you'd rather have the ease of a wibar you can replace this with the original wibar code
local panel = local panel =
wibox( wibox(
@ -38,7 +39,6 @@ local TopPanel = function(s)
layout = wibox.layout.align.horizontal, layout = wibox.layout.align.horizontal,
{ -- Left widgets { -- Left widgets
layout = wibox.layout.fixed.horizontal, layout = wibox.layout.fixed.horizontal,
--mylauncher,
s.mytaglist, s.mytaglist,
s.mypromptbox, s.mypromptbox,
}, },
@ -49,7 +49,6 @@ local TopPanel = function(s)
{ -- Right widgets { -- Right widgets
layout = wibox.layout.fixed.horizontal, layout = wibox.layout.fixed.horizontal,
mytextclock, mytextclock,
s.mylayoutbox,
}, },
} }