Cleaned up helper script.

This commit is contained in:
David E. O'Brien 1996-12-10 09:42:24 +00:00
parent 614a270b7c
commit 9802c96856
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=4914
2 changed files with 16 additions and 25 deletions

View file

@ -31,42 +31,33 @@ check_use_font ()
}
CF=""
FH=0
VF=""
FN=0
for i in "$@" ; do
if [ "$i" = "-fh" ]; then
FH=1; continue;
if [ "$i" = "-fn" ]; then
FN=1; continue;
fi
if [ "$FH" -eq 1 ]; then
CF=`check_use_font $i`
if [ "$CF" = "" ]; then
if [ "$FN" -eq 1 ]; then
VF=`check_use_font $i`
if [ "$VF" = "" ]; then
echo "Specified font doesn't exist in the X Window system."
exit 1
fi
break
fi
FH=0
FN=0
done
if [ "$CF" = "" ]; then
if [ "$NAME" = "cxterm" ]; then
CF=`check_use_font $GB_FONTS`
if [ "$CF" = "" ]; then
echo "Cannot identify a Vietnamese font in the X Window system."
exit 1
fi
FH_OPT="-fh $CF"
elif [ "$NAME" = "cxtermb5" ]; then
CF=`check_use_font $BIG5_FONTS`
if [ "$CF" = "" ]; then
echo "Cannot identify a Vietnamese font in the X Window system."
exit 1
fi
FH_OPT="-fh $CF"
if [ "$VF" = "" ]; then
VF=`check_use_font $VN_FONTS`
if [ "$VF" = "" ]; then
echo "Cannot identify a Vietnamese font in the X Window system."
exit 1
fi
FN_OPT="-fn $VF"
fi
XENVIRONMENT=$VNTERM_AD
export XENVIRONMENT
exec $VNTERM $FH_OPT $*
exec $VNTERM $FN_OPT $*

View file

@ -1,4 +1,4 @@
#!/bin/sh -x
#!/bin/sh
# set up the resource file
# nothing yet...