I put this in another thread in this forum:
The way that I run snes9x is by creating a small shell script containing something like /home/QtPalmtop/bin/earthworm_jim.sh:
#!/bin/sh
/home/QtPalmtop/bin/snes9x -xs 320 -ys 240 "/home/zaurus/snes-roms/Earthworm_Jim_US.zip"
Then I create a link under games link like earthworm_jim.desktop:
[Desktop Entry]
Comment = snes9x
Exec = earthworm_jim.sh
Icon = earthworm_jim
Name = Earthworm Jim
Then click on the icon under games and it runs great with sound and all on my c860.
I also created a shell script that uploads my game configurations as they are created:
#!/bin/bash
#
# This script will update all the SNES game shell scripts and icons
SHDIR=/home/QtPalmtop/bin/
ICONDIR=/home/QtPalmtop/pics/
DESKTOPDIR=/home/QtPalmtop/apps/Games/
# Shell script update
for sh in *.sh; do
cp $sh $SHDIR/
chmod 755 ${SHDIR}/${sh}
done
# Icon image update
for icon in *.png; do
cp $icon $ICONDIR/
chmod 644 ${ICONDIR}/${icon}
done
# Desktop update
for desktop in *.desktop; do
cp $desktop $DESKTOPDIR/
chmod 644 ${DESKTOPDIR}/${desktop}
done
This seems like a pain, but it has consistently worked on my Z.
YMMV!
If you want to use the exact same package I'm using you can get it from my feed at:
http://www.bryandeluca.com/feedHope this helps...