真棒wm启动栏小部件没有出现?

时间:2012-03-22 15:55:49

标签: lua launch awesome-wm

wiki,我只将快捷方式文件夹更改为/home/quanta/.config/awesome/launchbar/,其中包含一个包含内容的测试文件:

[Desktop Entry]
Name=Firefox
Exec=firefox
Icon=/usr/share/icons/hicolor/24x24/apps/firefox.png
Position=1

这个小部件通过两种方式添加到wibox:

mywibox[s].widgets = {
    --memwidget,
    --cpuwidget,
    {
        mylauncher,
        mytaglist[s],
        mypromptbox[s],
        layout = awful.widget.layout.horizontal.leftright
    },
    mylayoutbox[s],
    volume_widget,
    mytextclock,
    s == 1 and mysystray or nil,
    mytasklist[s],
    launchbar,
    layout = awful.widget.layout.horizontal.rightleft
}

或:

s == 1 and launchbar or nil,

但重新启动后没有任何反应。配置文件语法正常。有什么想法吗?

2 个答案:

答案 0 :(得分:0)

你可能想再试一次 - 曾经有一段时间在wiki上发布的小部件无效。无论如何,如果它仍然出错,请随时给我发邮件。

答案 1 :(得分:0)

您使用的是什么版本的精彩内容?如果你使用的是真棒版3.5,那么你正在查看wiki中的错误页面。你提供的就像是令人敬畏的3.4倍。请尝试此更新后的链接:http://awesome.naquadah.org/wiki/Quick_launch_bar_widget/3.5

如果这不起作用,可以随时使用小部件启动器。这就是我所拥有的,

firefox_launcher     = awful.widget.launcher({ image = "/home/joshua/.config/awesome/icons/Faenza/apps/48/firefox.png",
                       command = "firefox" })


   right_layout:add(firefox_launcher)