#!/bin/sh if which xvfb-run > /dev/null; then xvfb-run -s "-screen 0, 1366x768x24" sbt test scripted else echo "Xvfb not installed..." 1>&2 sbt test scripted fi