#!/bin/sh

. /etc/formfactor/config

ROBOTAPP="/home/root/RobotApp/robotapp"
ROBOTLOG="/home/root/RobotApp/startup.log"

if [ "$HAVE_TOUCHSCREEN" = "1" ]; then
    SHOWCURSOR="no"
else
    SHOWCURSOR="yes"
fi

if [ "$HAVE_KEYBOARD" = "1" ]; then
    KEYBOARD_APPLET=""
else
    KEYBOARD_APPLET="keyboard"
fi


matchbox-desktop &

echo "RobotApp: Booting" > $ROBOTLOG

if [ -e $ROBOTAPP ]; then
	# Source Robot App Setup
	echo "RobotApp: found setup file" >> $ROBOTLOG
	. $ROBOTAPP
else
	echo "RobotApp: Startup file found" >> $ROBOTLOG
fi

if [ -n "$DAEMON" ] ; then
	echo "RobotApp: Spawning Application $DAEMON" >> $ROBOTLOG
	$DAEMON &
fi


# Lines containing feature-[foo] are removed at build time if the machine
# doesn't have the feature "foo".

START_APPLETS=showdesktop,windowselector
END_APPLETS=clock,battery,$KEYBOARD_APPLET,systray,startup-notify,notify

matchbox-panel --titlebar --start-applets $START_APPLETS --end-applets $END_APPLETS &

exec matchbox-window-manager -theme Sato -use_desktop_mode decorated -use_cursor $SHOWCURSOR $@
