Sophie

Sophie

distrib > Mageia > 3 > i586 > media > core-release-src > by-pkgid > f46072a01399bbf29b06665d491b1781 > files > 8

xinitrc-2.4.21-8.mga3.src.rpm

#!/bin/sh
# (C) MandrakeSoft
# Chmouel Boudjnah <chmouel@mandrakesoft.com>
#
# $Id: Xsetup_0,v 1.12 2005/06/12 14:35:57 flepied Exp $

if [ -x /etc/X11/xinit/fixkeyboard ]; then
    /etc/X11/xinit/fixkeyboard
fi

if [ -x /etc/X11/xinit.d/numlock ]; then
    /etc/X11/xinit.d/numlock &
fi

for i in /etc/X11/xsetup.d/*.xsetup ; do
    [ -d $i ] && continue

    if [ -x $i ]; then
	if grep -q "# to be sourced" $i; then
	    . $i
	else
	    $i &
	fi
    fi
done

if [ -f /usr/share/mga/backgrounds/default.jpg ]; then
	/usr/bin/xloadimage -onroot -fullscreen /usr/share/mga/backgrounds/default.jpg
fi
# Xsetup_0 ends here