我即将从 Windows 切换到 Ubuntu。由于每次按下鼠标中键时鼠标都会多次单击,因此我AutoHotkey
在 Windows 下使用了在每次单击后添加延迟。这工作得很好。现在在 Ubuntu 下我想用AutoKey
它来做同样的事情。Autokey
不过,它的脚本使用 Python。
这是AutoHotkey
脚本:
MButton::
If (A_TimeSincePriorHotkey < 200)
Return
Send {MButton}
Return