#!/bin/bash
export TZ="Europe/Berlin"
if [ -n "${1}" ]; then
	if [ "${1}" = "dance" ]; then
		export steps="dance";
		export time="";
	else
		export time="${1}";
	fi
else
	export time="";
fi
shift;
if [ -n "${1}" ]; then
	export steps="${1}";
	ts=1;
else
	export steps="dance";
	ts=".5"
fi



watch --no-color -w -t -n $ts  pengu.run 
