[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: keyboard issues



>                                   The automatic key repeat rate is a little
> too slow to my liking.

It's not an X issue:

$ /sbin/kbdrate -r 30

This annoyed me enough to add this to my boot-up sequence:

/etc/rc2.d/S30keyboard -> ../init.d/keyboard

where the /etc/init.d/keyboard script is as follows:

-snip------------------------------
#! /bin/sh
#
# Set stupid Compaq keyboard

test -f /sbin/kbdrate || exit 0

case "$1" in
  start)
    echo "Setting stupid Compaq keyboard"
    /sbin/kbdrate -r 30
    ;;
  stop)
    ;;
  *)
    echo "Usage: /etc/init.d/keyboard {start|stop}"
    exit 1
esac

exit 0
-snip------------------------------
 
-- 
Peter Galbraith, research scientist          <GalbraithP@dfo-mpo.gc.ca>
Maurice Lamontagne Institute, Department of Fisheries and Oceans Canada
P.O. Box 1000, Mont-Joli Qc, G5H 3Z4 Canada. 418-775-0852 FAX: 775-0546
   6623'rd GNU/Linux user at the GNU/Linux Counter -- http://counter.li.org/ 


Reply to: