Skip to content

Instantly share code, notes, and snippets.

@florianajir
Created January 18, 2016 17:08
Show Gist options
  • Save florianajir/2a158c2c4a5b8abfa564 to your computer and use it in GitHub Desktop.
Save florianajir/2a158c2c4a5b8abfa564 to your computer and use it in GitHub Desktop.
#!/bin/bash
if [ -z "$1" ]; then
echo "`basename $0` {start|stop}"
exit
fi
case "$1" in
start)
/usr/bin/Xvfb :99 -ac -screen 0 1024x768x8 &
;;
stop)
killall Xvfb
;;
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment