#!/bin/sh
APP_DIR=/media/cryptofs/apps/usr/palm/applications/org.webosinternals.sdlquake
IMG_DIR=$APP_DIR/bin/images/
#Get updated app
wget http://wdtz.org/files/sdlquake -O $APP_DIR/bin/quake

#get update image resources
mkdir -p $IMG_DIR
wget http://wdtz.org/files/quake/joystick.png -O $IMG_DIR/joystick.png
wget http://wdtz.org/files/quake/joystick-press.png -O $IMG_DIR/joystick-press.png
wget http://wdtz.org/files/quake/jump.png -O $IMG_DIR/jump.png
wget http://wdtz.org/files/quake/fire.png -O $IMG_DIR/fire.png

echo "Done!"

