Afternoon. I created a new wibox in rc.lua for supplemental statusbar:
mywibox2 = {}
mywibox2 = awful.wibox({ position = "bottom", screen = 1, border_width = 0,
height = 16 })
Currently, it is just an empty status bar. I commented out the below, so
open clients would not appear in top statusbar:
-- Now bring it all together (with the tasklist in the middle)
-- layout:set_middle(mytasklist[s])
Ok, so now open clients do not appear at the top statusbar. I would like
open clients to appear on the bottom status bar. How? I want to keep the
top task bar just for widgets and available tags. Thanks in advance for
any insight.