我正在尝试添加 Awesome wiki 中显示的网络使用小部件,但我遇到了错误。这是代码:
-- Create the wibox
mywibox[s] = awful.wibox({ position = "top", screen = s })
-- Add widgets to the wibox - order matters
mywibox[s].widgets = {
{
mylauncher,
mytaglist[s],
mypromptbox[s],
layout = awful.widget.layout.horizontal.leftright
},
mylayoutbox[s],
mytextclock,
netwidget, -- ADD THIS, don't forget the comma!
s == 1 and mysystray or nil,
mytasklist[s],
layout = awful.widget.layout.horizontal.rightleft
}
end
-- }}}
我得到的错误是“预计接近‘结束’”。我假设它们指的是这里代码中的“结束”,因为它在我的 rc.lua 文件中是红色的,但我不知道我应该用它做什么。
在此先感谢您的帮助。
我认为您没有在 lua 脚本末尾使用“结束”语法。只需将其删除。
它用于“if”、“functions”和“for”循环之类的东西。
参考: