blob: 9d759c877de32fb3cdce02b55f1029291e8397ad (
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 /var/lock/subsys/numlock -a -x /usr/X11R6/bin/enable_X11_numlock ]; then
/usr/X11R6/bin/enable_X11_numlock
fi
# numlock ends here
|