This is just and extra update, here is part of the script from
http://freshmeat.net/projects/boinc/below is just a snippit of the code.
#!/bin/bash
#=================================================
# BOINC starter/status displayer
# Jean Philippe EIMER - phil.eimer@9online.fr
#-------------------------------------------------
# Released under the GNU General Public License v2
#=================================================
#---------------------------------------------
#---------------------------------------------
# Parameters to be set before using the script
# The path where BOINC state files reside
BOINC_PATH=
/home/boinc# The path where BOINC client executable resides (without the client name)
# If client 'setiathome' is in /usr/bin, you'll have BOINC_BIN_PATH=/usr/bin
# This path may be absolute or relative to BOINC_PATH
BOINC_BIN_PATH
/home/boinc# LOG file for BOINC, with its absolute path
BOINC_LOG_FILE=$BOINC_PATH/boinc.log
# Options to give to the client when it starts
# See the documentation of the BOINC client
BOINC_OPTIONS=""
# Nothing should be modified below this line
#---------------------------------------------
#---------------------------------------------
#***********
# VARIABLES
#***********
VERSION="1.5"
DATE="9/2004"
AUTHOR="Jean Philippe EIMER"
EMAIL="phil.eimer@9online.fr"
BOINC_EXEC=
boinc_4.19_i686-pc-linux-gnuSTATE_FILE=$BOINC_PATH/client_state.xml
PID_CMD=/sbin/pidof
DATE_CMD=date
PS_CMD=ps
GREP_CMD=grep
BOINC_DATE_FORMAT="%c"
# Comment if you don't want color
BOINC_WARNING="33[0;31m" # RED
BOINC_INFO="33[0;36m" # LIGHT BLUE
BOINC_TITLE_COLOR="33[01;34m" # BOLD BLUE
BOINC_SUBTITLE_COLOR="33[01;01m" # BOLD
BOINC_NORMAL="33[0m"
In
bold is what i have modified to get the script to work right