xdotool录音机

时间:2013-01-03 06:15:46

标签: bash user-interface automation xdotool

有人知道自动xdotool脚本生成器吗?理想情况下,我想在我的桌面上录制一系列动作,并自动将其制作成xdotool脚本,而不是手动添加暂停和计数像素等。

1 个答案:

答案 0 :(得分:6)

我不能肯定地说不知道你想做什么,但我认为你可能想要使用xmacro。这里有一个很好的教程: http://linuxpoison.blogspot.in/2012/03/record-play-keystrokes-and-mouse.html

以下是摘要:

# Start recording macro.
xmacrorec2 > macro.txt
# Select a keystroke to end the macro.
# Do stuff.
# End the macro with the previously chosen keystroke.

运行宏:

xmacroplay $DISPLAY < macro.txt

博客文章指出,不会记录时间信息。