Thanks David, but none of them worked, that is, none of them put the new
task at the right of the others, they are still put on the left. Here you
have my part of rc.lua you mention:

    -- Add widgets to the wibox - order matters
    mywibox[s].widgets = {
        {
            mylauncher,
            mytaglist[s],
            mypromptbox[s],
            layout = awful.widget.layout.horizontal.leftright
        },
        mylayoutbox[s],
        mytextclock,
        s == 1 and mysystray or nil,
        mytasklist[s],
        layout = awful.widget.layout.horizontal.rightleft
    }

Javi
2012/8/31 David Gomes <[email protected]>

> 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
>>
>>
>>
>

Reply via email to