#! /bin/sh

if [ "$1" = ""  -o ! -d Modules/$1  ]; then

	echo "The folowing modules are installed:"
	cd Modules
	for file in *; do
		if [ $file != "Generator" ]; then
			echo -n "  $file -- "
			if [ -f $file/info ]; then
				cat $file/info
			else
				echo ""
			fi
		fi
	done
	echo ""
	echo "To start the Dotfile Generator type $0 <module name>"
	echo "Eg. \"$0 emacs\" to configure emacs."
	echo ""
	echo "For more information on the Dotfile Generator or modules for it"
	echo "please refer to the following URL on the World Wide Web:"
	echo "http://www.imada.ou.dk/~blackie/dotfile/"
	echo ""
else
	exec /usr/local/bin/wish -f Generator/dotfile.tcl Generator Modules/$1 $2
fi

