#! /bin/sh
# To install TermChooser, open a Terminal in this directory and type "tcinstall"
# This script will install a few Terminal settings files, a Terminal font, and the termset script.

### Create TermChooser directory and pre-install a few freebie settings.

if [ -f ~/config/settings/termset ]; then
	cp settings/* ~/config/settings/termset
		else
	mkdir ~/config/settings/termset;
	cp settings/* ~/config/settings/termset
fi

echo
echo A few starter settings files were installed in ~/config/settings/termset
echo

### Throw in a freebie font for the halibut.
cp fonts/* /boot/beos/etc/fonts/ttfonts
echo Freebie fonts installed \(OCR-A, Lucida Console\)
echo

cp termset /boot/home/config/bin
copyattr termset /boot/home/config/bin/termset 
echo

echo The termset script has been placed in /boot/home/config/bin. 
echo
echo To switch Terminal configs, type "termset" at any prompt.


