1. Install google-drive-ocamlfuse
2. Line in /etc/fstab (all one line):
gdfuse#default /home/dom/GoogleDriveUofA fuse uid=1000,gid=1000,allow_other,user,_netdev 0 0
3. Contents of executable /usr/bin/gdfuse
#!/bin/bash
su dom -l -c "google-drive-ocamlfuse -label $1 $*"
exit 0