I would like to have some apps (which I open when starting my session) always in the same order in the task bar. Is that possible?
Vim | Chrome | Terminal
Another question: for now, when I open an app, it is opened on the left part of the task bar, is there a way to open it rather on the right side, after the already open apps?
I have this lines in rc.lua:
-- 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