#!/bin/bash

if test "x$@" = "x"
then
	dotfile=/usr/share/graphviz/dotedit-splash.dot
else
	dotfile="$@"
fi

exec dot -Tgtk "$dotfile"
