Linux – Adjust keyboard repeat rate in linux

keyboardlinux

I'm making the switch from gnome to xmonad, and one of the customizations I have made in gnome which does not translate over to xmonad is an increased keyboard repeat rate. Is there a more general purpose tool to set the keyboard repeat rate in linux than something that is dependent upon your desktop environment such as gnome or kde?

Best Answer

xset:

...
To turn auto-repeat off or on:
    -r [keycode]        r off
     r [keycode]        r on
     r rate [delay [rate]]
...

Alternatively, run gnome-settings-daemon inside xmonad.

Related Question