有没有人知道一个自动化的xdotool脚本生成器?理想情况下,我希望在桌面上记录一系列操作,并自动将其转换为xdotool脚本,而不是手动添加暂停和计算像素等。
发布于 2013-07-16 17:19:37
如果不知道你想要做什么,我不能确定,但我认为你可能会想要使用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这篇博文指出,计时信息没有记录下来。
https://stackoverflow.com/questions/14133947
复制相似问题