View Single Post
  #2  
Old 10-05-2006, 07:31 AM
Angelox
AX Classic Developer
 
Join Date: May 2006
Location: filler
Posts: 2,049
Default

In your startup script, you can add the lines;

sleep 40
wine minilogin

at the end of the script;
Code:
#!/bin/sh

P=`pwd` 
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$P"
#make sure we have a place to log
mkdir -p logs 2>&1 > /dev/null 

#boot up world
if [ ! -e .lock-world ] ; then 
	    touch .lock-world 
	    ./world & 
	    # wait for shared memory to load
	    sleep 15 
fi 

#start up the official launcher
if [ ! -e .lock-launcher ]; then
	    touch .lock-launcher
	    ./eqlaunch zones &
	    sleep 40
	    wine MiniLogin.exe
fi
This will run anywhere - at least on my Mandriva distro, anyways
Reply With Quote