#!/bin/sh
# 

#export LOGNAME=root
#export HOME=/$LOGNAME
#  export QWS_DISPLAY=Transformed:Rot270:0
#export QWS_DISPLAY=:0:0
#export QWS_MOUSE_PROTO=TPanel:/dev/tpanel
#export QWS_KEYBOARD=TTY
#export QWS_SW_CURSOR=1
export QWS_SIZE=640x240 

export QTDIR=/usr
export QPEDIR=/opt/QtPalmtop

$QPEDIR/bin/qpe-reorgfiles


killproc() {
        pid=`ps -e | sed -n -e '/\<'$1'\>/ s/^ *\([0-9][0-9]*\).*/\1/p'`
        [ "$pid" != "" ] && kill $pid
}

case $1 in
'start')
	echo "Starting QPE..."

	cd $HOME

	rm -f /etc/rc2.d/S99x # Can't have both running!
	
	#put stderr messages into ~/.q.err
	$QPEDIR/bin/qpe 2>~/.q.err
#&

	;;
'stop')
        echo "Killing QPE..."
        killproc qpe
        ;;
*)
        echo "usage: $0 { start | stop }"
        ;;
esac

