#!/bin/bash

if [ ! -e /var/run/gpm.pid ]
then
  echo "starting mouse/tablet"
  /usr/sbin/gpm -t ps2 -m /dev/mice -M -t ps2 -m /dev/psaux
fi
