#!/bin/sh
if [ -r $HOME/.kde/share/config/mandrakegalaxyrc ]; then
	if [ -z `grep -i "DontShowWindowAtTheNextStartUp=false" "$HOME/.kde/share/config/mandrakegalaxyrc" 2>/dev/null` ] ; then
		if [ -z $1 ]; then
			/usr/bin/mandrakegalaxy.real --caption ""
		else
			/usr/bin/mandrakegalaxy.real --caption $1
		fi
	fi
elif [ -z $1 ]; then
	exec /usr/bin/mandrakegalaxy.real --caption ""
else
	/usr/bin/mandrakegalaxy.real --caption $1
fi
