You are not logged in.
Hi. Would it be possible to do something like `xset r off` but only for one key? I'd like to disable key repeat for the enter key.
Offline
xset 2>&1 | grep -A3 'auto-repeat'Offline
After seeing seth's post and looking at the xset output and man-page, I found out that this here seems to work:
xset -r 36Using "-r" disables the key's repeat, and using "r" (without "-") enables it again.
I got the key code through "xev -event keyboard" and hitting the Enter key. A text "keycode 36" was mentioned somewhere in the xev output.
Last edited by Ropid (2020-07-25 22:07:13)
Offline
Ah yes, that did the trick! Thank you both.
Offline
Great.
Please always remember to mark resolved threads by editing your initial posts subject - so others will know that there's no task left, but maybe a solution to find.
Thanks.
Offline