I'm running Ubuntu 11.10 with xmonad. How do I configure repeat speed and delay of the keyboard? Is there a graphical tool or I'll have to edit some config file?

link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Try man xset:

$ xset r rate 1000 200

will set dalay to one second and repeat rate to 200 chars per second.
This is not xmonad-related, but you can put your xset command to the xmonad config:

startupHook = spawn "xset r rate 200 20"
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.