On Sunday 27 October 2002 9:01 pm, Tony Alfrey wrote: > I've been looking at the GUI hack and am > glad it still applies. It sounds like I need to treat kde3 (and qt3) > like the hack for kde2. In other words, make an executable called kde3 > that is an as-you-described modified start script that sets environment > variables and the other start-up stuff? > Jeeze, I just know I'm gonna blow this up.
Or just make the new executable call /opt/kde3/startkde when it has set everything up... #!/bin/sh # KDE 3 STARTUP SCRIPT (EW3.1) # Save as /usr/X11R6/bin/kde3 and make executable QTDIR=/usr/lib/qt3 KDEDIR=/opt/kde3 KDEDIRS=/opt/kde3 KDEHOME=$HOME/.kde3 PATH=$QTDIR/bin:$KDEDIR/bin:$PATH LD_LIBRARY_PATH=$QTDIR/lib:$KDEDIR/lib export QTDIR KDEDIR KDEDIRS PATH LD_LIBRARY_PATH KDEHOME /opt/kde3/bin/startkde -- Pam R: Don't put off until tomorrow what you can leave to the day after. Linux StepbyStep: http://www.linux-sxs.org/stepbystep.html _______________________________________________ Linux-users mailing list [EMAIL PROTECTED] Unsubscribe/Suspend/Etc -> http://www.linux-sxs.org/mailman/listinfo/linux-users
