mirror of
git://slackware.nl/current.git
synced 2025-01-06 05:25:20 +01:00
19 lines
503 B
Text
19 lines
503 B
Text
|
#!/bin/sh
|
||
|
# $Xorg: Xsetup_0,v 1.3 2000/08/17 19:54:17 cpqbld Exp $
|
||
|
#xconsole -geometry 480x130-0-0 -daemon -notify -verbose -fn fixed -exitOnFail
|
||
|
|
||
|
# Fix backspace problem in login box:
|
||
|
sysmodmap=/etc/X11/xinit/.Xmodmap
|
||
|
if [ -f $sysmodmap ]; then
|
||
|
/usr/bin/xmodmap $sysmodmap
|
||
|
fi
|
||
|
|
||
|
# If the nifty KDE background loader is around, use it:
|
||
|
if [ -x /opt/kde/bin/kdmdesktop ]; then
|
||
|
/opt/kde/bin/kdmdesktop
|
||
|
elif [ -x /usr/bin/kdmdesktop ]; then
|
||
|
/usr/bin/kdmdesktop
|
||
|
else
|
||
|
/usr/bin/xsetroot -solid SteelBlue
|
||
|
fi
|