我已经为我的即时通讯工具创建了一条规则,同理心,始终从“im”标签开始。
{ rule = { class = "Empathy" },
properties = { tag = tags[1][5] } },
在rc.lua结束时,我使用以下方式自动启动它:
awful.util.spawn("/usr/bin/empathy")
但是,重新启动Aweseome-WM时,窗口始终会在第一个标记上打开。
其他程序运作得很好:
{ rule = { class = "Firefox" },
properties = { tag = tags[1][1] } },
{ rule = { class = "Codeblocks" },
properties = { tag = tags[1][2] } },
我发现有人描述了同样的问题here,并尝试了建议的内容(在事件中检查窗口的类),我也使用xprop检查了窗口的类,这两种方法告诉我“移情”是正确的课程。
c:connect_signal("property::class", function(c)
naughty.notify({ text = "CHANGED name!" .. c.class })
end)
如何在“im”标签上显示同理心?