我想通过将空格键发送到其主窗口来暂停 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 $