Thank you so much Sean! that worked fine! Now I can make a clean migration
of my 3.4 desktop, this mailing list is awesome! just only more question
what if I want to put more widgets on the bottom wibox? it's something like
this:
-- Widgets that are aligned to the left on bottom
local left_layout2 = wibox.layout.fixed.horizontal()
left_layout2:add(some_widget)
left_layout2:add(other_widget)
left_layout2:add(another_sidget)
and then
local layout2 = wibox.layout.align.horizontal()
layout2:set_left(left_layout2)
is it right?