1

我想在任务栏中始终以相同的顺序有一些应用程序(我在开始会话时打开)。那可能吗?

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
}

哈维

4

1 回答 1

2

要将新窗口放在列表的末尾(使它们成为从属窗口),您可以将规则添加到 rc.lua 文件

{ rule = { }, properties = { }, callback = awful.client.setslave }

要自动启动应用程序,请使用

awful.util.spawn_with_shell("App1 -with -keys")
awful.util.spawn_with_shell("App2 -with -keys")

我相信他们会按照这个顺序运行。并确保您在 rc.lua 中添加了可怕的内容。你可以通过函数 require("awful")

看看常见问题解答

PS对不起,我不确定我是否理解你的正确。

于 2012-09-05T14:22:37.710 回答