スペースバーをメインウィンドウに送って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 $