我想在任务栏中始终以相同的顺序有一些应用程序(我在开始会话时打开)。那可能吗?
Vim | Chrome | Terminal
另一个问题:现在,当我打开一个应用程序时,它是在任务栏的左侧打开的,在已经打开的应用程序之后,有没有办法在右侧打开它?
我在 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
}
哈维