Linux 的自动截图工具

Linux 的自动截图工具

我使用 Windows 中的 zscreen 每 2 分钟捕获一次屏幕,并将它们保存在带有日期时间标签的本地文件系统上。是否有任何工具或脚本可以在 Linux Ubuntu 上执行此操作?

答案1

您可以使用 scrot 并将其放入 /etc/crontab 并将其添加到 /etc/crontab

*/2 * * * * <username> scrot 

为此,您需要 scrot,您可以像这样安装:

sudo apt-get install scrot

您还可以为 scrot 提供以下参数以将图像移动到您的图片目录

scrot '%Y-%m-%d_$wx$h_scrot.png' -e 'mv $f ~/Pictures/'

相关内容