#!/sbin/sh
echo "Making symbolic link from /etc/fw/bin/fwm -> .fwm"
if [ -h /etc/fw/bin/fwm ]; then
   rm /etc/fw/bin/fwm;
fi
ln -s .fwm /etc/fw/bin/fwm

