#!/bin/sh

if [ "x$DISPLAY" == "x" ]; then
	echo "Env variable DISPLAY not present, aborting..."
	exit 1
fi

(xterm -sb -rv -hold -name pttxrun -title "pttxrun output" -e "$@" ) &

