Ok to make
Main Bar (Bar Main)
\/
[--------------] [<][Stuff][>] [ -------------]
/\ /\
The paneled bar (BarLeft) ||
The other paneled bar (BarRight)
Now I assume you want the Left most and right most bars panneled, having both buttons shown in the center.
Try this code:
Add any theme info and real content.
DestroyModuleConfig MainBar: *
# Config MainBar's look here
*MainBar: (Panel(NoBorder, Nohints, left, steps 15, delay 6, indicator 10) "BarLeft" 'Module FvwmButtons BarLeft')
#Enter other stuff you want in the main bar between the two buttons
*MainBar: (Panel(NoBorder, Nohints, left, steps 15, delay 6, indicator 10) "BarRight" 'Module FvwmButtons BarRight')
DestroyModuleConfig BarLeft: *
# Define BarLeft
DestroyModuleConfig BarRight: *
# Define BarRight
Now if you wanted to have the two side bars the same just replace BarRight with BarLeft:
DestroyModuleConfig MainBar: *
# Config MainBar's look here
*MainBar: (Panel(NoBorder, Nohints, left, steps 15, delay 6, indicator 10) "BarLeft" 'Module FvwmButtons BarLeft')
#Enter other stuff you want in the main bar between the two buttons
*MainBar: (Panel(NoBorder, Nohints, left, steps 15, delay 6, indicator 10) "BarLeft" 'nop') # do not want to launch another instance
DestroyModuleConfig BarLeft: *
# Define BarLeft
Finally if you wanted them to nest so that the leftmost bar, spanws the middle, then the middle spawns the rightmost:
DestroyModuleConfig BarLeft: *
# Define BarLeft
*BarLeft: (Panel(NoBorder, Nohints, left, steps 15, delay 6, indicator 10) "BarLeft" 'Module FvwmButtons BarMid')
DestroyModuleConfig MidBar: *
# Config MidBar's look here
*MidBar: (Panel(NoBorder, Nohints, left, steps 15, delay 6, indicator 10) "BarRight" 'Module FvwmButtons BarRight')
DestroyModuleConfig BarRight: *
# Define BarRight
This gives [LEFT BAR >][MID BAR >][RIGHT BAR]