# Shell library to get the default desktop that tasksel will select 
# for an architecture.
#
# This may be used outside of tasksel (eg, by debian-cd) so should be a
# stable interface.

default_desktop_for_arch() {
	case "$1" in
		kfreebsd-*) echo xfce ;;
		hurd-*) echo xfce ;;
		*) echo gnome ;;
	esac
}
