#!/bin/bash
if grep -q application/freenote /opt/QtPalmtop/etc/mime.types
then
	echo already resistered.
else
	cp /opt/QtPalmtop/etc/mime.types /opt/QtPalmtop/etc/mime.types.bak
	echo 'application/freenote	free' >> /opt/QtPalmtop/etc/mime.types
fi
