#!/bin/bash

scripts="$1"
if [ "$scripts" == "" ]
then
	exit 1
fi

source "$scripts/effects"
bash "$scripts/$start" "$scripts"

