#! /bin/bash

# Run program unless it's already running.

if [ ! "`ps -A | grep $1`" ]; then
  xbindkeys &;
fi

if [ ! "`ps -A | grep $2`" ]; then
  wicd-client &;
fi

if [ ! "`ps -A | grep $3`" ]; then
  volwheel &;
fi

