#!/bin/csh -f

set choices=(monitors modem)

echo ""
echo "xpppmon icon selection:"
echo " 1 - monitors"
echo " 2 - modem"
echo -n "Selection>"
set junk=$<
if ($junk > 0 && $junk <= $#choices) then
	rm -f xpm
	ln -s $choices[$junk] xpm
	touch -c xmodemlights.c
else
	echo "* Bad Selection"
endif
echo " "
