#! /bin/bash
a=$(crontab -l 2>&1 )
if [[ $a =~ "no crontab for" ]]; then
	echo "Creating crontab file"
	/usr/share/gnome-schedule/make_crontab
fi
/usr/bin/python2 /usr/share/gnome-schedule/gnome-schedule.py $1
