#!/bin/bash if [ "$1" = suspend ]; then /usr/local/bin/stoparts elif [ "$1" = resume ]; then su - ben -c "/usr/local/bin/startarts" fi