如何在 Ubuntu 中向 Chrome 发送按键?

如何在 Ubuntu 中向 Chrome 发送按键?

我想让我的电脑Esc每 2 分钟按一次键。我该怎么做?使用应用程序或 shell 脚本还是其他方式?

答案1

你可以使用工具 安装 xdotool

while true; do
   xdotool key Escape
   sleep 120
done

--window您可以使用选项指定一个窗口

相关内容