hi again, I can't put some widgets on the wibox at bottom. it's annoying
because all the widgets on the top wibox are also on the bottom wibox.
thi is my bottom wibox:
mywibox[s] = awful.wibox({ position = "bottom", screen = s , height = 14})
and then, I try to put the *sys* widget:
local layout = wibox.layout.align.horizontal()
left_layout:add(sys)
layout:set_left(left_layout)
mywibox[s]:set_widget(layout)
the *sys* widget appears, but also all the widgets on the top too
(launcher, tasklist, clock, etc..)
how can I separate the widgets on top and the widgets on bottom?