#!/usr/pkg/bin/bash
# Description: Headless Chrome --- with audio on an amp 
set -x


pidof Xvfb ||  nice -n 15 Xvfb -ac :5 -screen 0 800x200x16 &
export DISPLAY=:5
nice -n 15 google-chrome --alsa-output-device=amp --remote-debugging-port=9222 "$@"  2>&1 > /dev/null &
