Radix cross Linux

The main Radix cross Linux repository contains the build scripts of packages, which have the most complete and common functionality for desktop machines

452 Commits   2 Branches   1 Tag
#!/bin/sh
#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