# browser options

# check in this order for existence and use the first available
browser="x-www-browser opera chromium google-chrome firefox"

for b in $browser ; do
    if hash $b > /dev/null 2>&1 ; then
	export BROWSER=$b
	break
    fi
done