File 3Guys-wrapper.sh of Package 3Guys
#!/bin/sh
GAME_DATA_DIR=/usr/share/3Guys
# check if required datafiles are present
if [ ! -f $GAME_DATA_DIR/data/app/config.json ]; then
echo "**********************************************************"
echo "You need datafiles to play the game! "
echo "There are 2 options:"
echo ""
echo "*** 01 - Install Demo (You can play the first 10 levels)"
echo " -> zypper install 3Guys-data-demo"
echo ""
echo "*** 02 - Get Full version (you can buy it from"
echo " http://www.stephenjsweeney.com/games/threeGuys/"
echo " -> copy the folder data/ into /usr/share/3Guys/"
echo "**********************************************************"
exit 1
fi
GAME_EXECUTABLE=/usr/lib/3Guys/3Guys
exec $GAME_EXECUTABLE "$@"