#!/bin/sh
if ! [ -e "/home/$USER/.om-welcome" ]; then
	touch ~/.om-welcome
	echo 'autostart=1' > ~/.om-welcome
fi

source ~/.om-welcome

#read if autostart?
if [ "$autostart" -eq 1 ]; then
	exec /usr/bin/om-welcome
fi
