有什么办法吗?如何自动每 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
有什么办法吗?如何自动每 30 分钟按一次 Win+D,而无需我按下组合键?
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