blob: 66ddfcbf5e682a8ffb923b43f6fff1c56a94c182 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
#---------------------------------------------------------------
# Project : Mandrake
# Module : numlock
# File : numlock.xinit
# Version : $Id$
# Author : Frederic Lepied
# Created On : Wed Apr 12 08:39:24 2000
#---------------------------------------------------------------
if [ -f /etc/sysconfig/NumLock -a -x /usr/X11R6/bin/enable_X11_numlock ]; then
/usr/X11R6/bin/enable_X11_numlock
fi
# numlock ends here
|