我在我的rc.lua文件中为我的wm配置了透明度。我现在收到标题中提到的错误。我已经打开了我原来的rc.lua,它位于/etc/xdg/awesome/rc.lua并使它完全相同,但我仍然得到这个错误。有什么想法吗?
client.connect_signal("focus", function(c) c.border_color = beautiful.border_focus end)
client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end)
我在安装新主题时遇到了错误,但我想这可能是同样的问题。
提到的两行非常好,错误信息是误导!问题是(在我的配置中至少)我的主题文件的错误路径:
# This was the original line:
# beautiful.init("~/.config/awesome/themes/Darklooks/")
# and now the working full path to my theme file:
beautiful.init("~/.config/awesome/themes/Darklooks/theme.lua")