#!/bin/bash
if [ ! "$(dpkg -L python-kiwi)" ] ; then
	zenity --question --title="Install python-kiwi?" --text="The package python-kiwi is required to run the graphic installer.  Would you like to install python-kiwi at this time?"
	if [ "$?" = "0" ] ; then	
		echo "Install python-kiwi"		
		xterm -e "echo -e \"Installing python-kiwi\n==============\n\" ; sudo apt-get install python-kiwi ; echo \"Press enter to exit.\" ; read"
	else
		exit
	fi
fi
./ff_widgets.py install
