mywibox[s].widgets = {{ mytaglist[s], mypromptbox[s],
layout = awful.widget.layout.horizontal.leftright
},
--mylayoutbox[s],
mytextclock,
myvolumewidget,
mybatterywidget,
s == 1 and mysystray or nil,
mytasklist[s],
layout = awful.widget.layout.horizontal.rightleft}
You should have something like that on your rc.lua. As you can see,
mytasklist[s] has a layout that aligns it to the right left.
Try this:
mywibox[s].widgets = {{ mytaglist[s], mypromptbox[s], mytasklist[s],
layout = awful.widget.layout.horizontal.leftright
},
--mylayoutbox[s],
mytextclock,
myvolumewidget,
mybatterywidget,
s == 1 and mysystray or nil,
layout = awful.widget.layout.horizontal.rightleft}
If that doesn't work try this:
mywibox[s].widgets = {{ mytaglist[s], mytasklist[s], mypromptbox[s],
layout = awful.widget.layout.horizontal.leftright
},
--mylayoutbox[s],
mytextclock,
myvolumewidget,
mybatterywidget,
s == 1 and mysystray or nil,
layout = awful.widget.layout.horizontal.rightleft}
On Fri, Aug 31, 2012 at 10:50 AM, Javier Garcia <[email protected]>wrote:
> Hi,
>
> I would like to have in the same order the apps in the task bar.
>
> Terminal - Vim - Chromium - ...
>
> I have this lines in rc.lua:
>
> awful.util.spawn("run_once xterm")
> awful.util.spawn("run_once thunderbird")
> awful.util.spawn("run_once terminator")
>
> Other question: now when I open an app it is opened on the left part of
> the task bar, is there any way to open it on the right of the open apps in
> the task bar?
>
> Javi
>
>
>