head	1.1;
access;
symbols;
locks; strict;
comment	@# @;


1.1
date	2003.07.24.18.51.08;	author hanno;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	2005.11.30.10.02.08;	author chriswhite;	state Exp;
branches;
next	;


desc
@@


1.1
log
@added fte executable script.
@
text
@#!/bin/sh
#
# simple wrapper shell script which selects appropriate fte executable
#

if [ -n "$DISPLAY" ]; then
	if which xfte >/dev/null; then
		exec xfte "$@@"
	elif which sfte >/dev/null; then
		exec sfte "$@@"
	elif which vfte >/dev/null; then
		echo "Only Console version installed!"
	fi
else
	if [ "$TERM" = linux ] && which vfte >/dev/null; then
		exec vfte "$@@"
	elif which sfte >/dev/null; then
		exec sfte "$@@"
	elif which xfte >/dev/null; then
		echo "Only X-Window version installed!"
	fi

fi

echo "No binary executable from the FTE family has been found!"
echo "Please install one of them."
@


1.1.1.1
log
@*** empty log message ***
@
text
@@

