You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all thank you for developing this tool. In Windows I used an Autohotkey script to use a mouse with wornout switches. I could use the mouse with the below script.
LButton:: ;blocks the left button event completely
If (A_TimeSincePriorHotkey < 100) ;detects if a faulty hyperclick event occured
Return ; if it's a faulty hyperclick, it keeps blocking the left button events
sendinput {LButton down} ; else send decent simulated click down event
KeyWait, LButton ; waits for another button event
sendinput {LButton up} ; send simulated button up event
Return
It works very well in Windows but Linux missing such a tool.
Is it possible with this tool?
The text was updated successfully, but these errors were encountered:
First of all thank you for developing this tool. In Windows I used an Autohotkey script to use a mouse with wornout switches. I could use the mouse with the below script.
It works very well in Windows but Linux missing such a tool.
Is it possible with this tool?
The text was updated successfully, but these errors were encountered: