Xdotool

如何將條件與 xdotool 結合起來?

  • October 3, 2019

是否可以同時搜尋--class--name使用 xdotool?

xdotool search --all --onlyvisible --class "some_val" --name "another val"

上面返回錯誤,因為第一個條件 ,--class之前已經返回視窗 ID,--name可用於過濾結果:

xdotool: Unknown command: --name

棘手的是搜尋命令的–class、–name 和–classname 選項不帶參數。(我認為這已經絆倒了很多人。)他們修改了搜尋命令的內容。

連結搜尋也不起作用;第二次搜尋丟棄第一次的結果。

我只能建議使用 shell 腳本。這是一種方法:

( xdotool search --all --onlyvisible --class 'some_val'
 xdotool search --name 'another val' ) |
   sort | uniq -d

引用自:https://unix.stackexchange.com/questions/260842