Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#!/usr/bin/ksh
if [ $0 = /usr/local/bin/mount-cdrom ] ; then
mount -V cdrfs -o ro /dev/cd0 /mnt
elif [ $0 = /usr/local/bin/umount-cdrom ] ; then
umount /mnt
elif [ $0 = /usr/local/bin/unmount-cdrom ] ; then
umount /mnt
fi
exit