xdotool 명령 체인

xdotool 명령 체인

스페이스바를 기본 창으로 보내 vlc 플레이어를 일시 중지하고 싶습니다.

내가 시도한 것은 다음과 같습니다.

xdotool search --class vlc key space

그리고

xdotool search --classname vlc key space

그건 작동하지 않습니다. 작동하는 것은 다음과 같습니다.

xdotool search --class vlc | while read window; do xdotool key --window $window "space"; done;

분명히 이 솔루션은 xdotool 명령 체인을 활용하지 않습니다. 이에 대한 피드백을 받고 싶습니다.

추가 정보

ychaouche#ychaouche-PC 15:08:03 /usr/share/man $ xdotool search  --class "Vlc"   | nl
     1  65011874
     2  65011964
     3  65011994
     4  65011729
     5  65011747
     6  65011738
ychaouche#ychaouche-PC 15:08:45 /usr/share/man $ xdotool search  --classname "Vlc"   | nl
     1  65011874
     2  65011964
     3  65011994
     4  65011729
     5  65011747
     6  65011738
ychaouche#ychaouche-PC 15:08:49 /usr/share/man $

관련 정보