xdotool 帮助

xdotool 帮助

我正在尝试使用 xdotool 让 Conky 与 Lubuntu 协同工作。

xdotool search --class "Pcmanfm" behave %2 focus windowraise $(xdotool search --class "Conky")

我收到一个错误:

xdotool: Unknown command: 44040194

答案1

问题是xdotool search --class "Conky"找到多个窗口,并导致多个窗口 ID - 第一个在这个地方有意义,但第二个是在第一个xdotool期望下一个命令的地方。

您应该更改搜索xdotool search --class "Conky"以仅匹配一个窗口。

如果不可能的话,你可以$(xdotool search --class "Conky" | head -n 1)选择其中的一个,而不需要知道哪一个,

或者类似的解决方案xdotool:未知命令:21043361

相关内容