#!/bin/bash
if [ "$1" == kill ]; then
	ssh tom_web@localhost pkill firefox
else
	ssh -X tom_web@localhost ~tom/lib/firefox/firefox
fi

