Help With Wan X


Just to get it working by putting shortcut in the shortcut folder.

but i can't figure out how to make them
 
Are you trying to write a shell script to quick-launch this Wan X thing?

Here's an example of one that works for me (to launch DrMDx):

Code:
#!/bin/sh

/mnt/sd/cpu_speed.gpe 1 2 200
cd /mnt/sd/DrMD/
./DrMDx.gpe
sync

cd /usr/gp2x/
exec /usr/gp2x/gp2xmenu

(copy this script using Programmer's Notepad with Unix line endings)

... it first runs the LCD_Speed app, then changes to the DrMD folder, then runs the executable. You can alter it to fit your directories/apps as needed.
 
Im just trying to the programs to work on it, but i can't figure out how to make the shortcut to put in the file so that it comes up on the menu and works.
 
Oh, I see ... it's an alternative launcher.

Did you read the Readme?

#!/bin/sh

# Don't touch this!
cd /mnt/sd

# Directory to app
cd dir/to/app

# Executable name
./executable.gpe

# Don't touch this too!
sync
cd /usr/gp2x
./gp2xmenu

^ This provided example script shows how to make one.
 
Back
Top