#!/bin/sh

if [ -n "$1" ]
then
  /usr/lib/chromium/content_shell --no-sandbox $1
else
  /usr/lib/chromium/content_shell --no-sandbox http://www.google.com
fi
