有人知道自动化的xdotool脚本生成器吗?理想情况下,我想在我的桌面上记录一系列动作,并让它自动为我制作一个xdotool脚本,而不是手动添加暂停和计数像素等。
在不知道更多关于您想做什么的情况下,我不能肯定地说,但我认为您可能想使用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
博客文章指出,没有记录计时信息。