如何在 Linux Mint 上每 30 分钟自动显示一次桌面

如何在 Linux Mint 上每 30 分钟自动显示一次桌面

有什么办法吗?如何自动每 30 分钟按一次 Win+D,而无需我按下组合键?

答案1

xdotool允许发送击键。

安装:

sudo apt-get install xdotool

在你的情况下这应该有效:

xdotool key super+d

每 30 分钟

while sleep 1800; do xdotool key super+d; done

或者

watch -n1800  xdotool key super+d

相关内容