저는 17개의 탭이 있는 Google Chrome을 실행하고 있습니다.
$ xdotool search --name "Google Chrome"
79691777
다음은 왜 7개의 WID를 반환합니까? 7은 Google Chrome 창에 17개의 탭이 있다는 사실과 일치하지 않습니다.
$ xdotool search --name "Chrome" 79691777 69206017 69206019 69206054 69206057 69206065 69206207
첫 번째 창을 제외하고 WID가 있는 창을 찾고 싶습니다. 그런데 두 번째 WID 활성화가 실패하는 이유는 무엇입니까?
$ xdotool windowactivate 69206017 XGetWindowProperty[_NET_WM_DESKTOP] failed (code=1)
마찬가지로 증거로
$ xdotool search --class evince
161480705
161480711
$ xdotool windowactivate 161480705
XGetWindowProperty[_NET_WM_DESKTOP] failed (code=1)
감사해요.