#!/bin/dash
SPOT_HOME=$(awk -F: '$1=="spot" {print $6}' /etc/passwd)
case $(id -un) in
	root|spot) rox -d $SPOT_HOME ;;
	*) rox -d $HOME ;;
esac
