$Revision: 1.1 $

The following samples were provided by Edward Herr

CPU & HD temp script:

#!/bin/bash
CPUTEMP=`acpi -ABt | cut -d " " -f 9 | cut -d "." -f 1`
DISKTEMP=`hddtemp -n /dev/hda`
echo cpu $CPUTEMP 
echo hda $DISKTEMP

and wireless bitrate...

#!/bin/bash
BITRATE=`/sbin/iwconfig eth1|grep "Bit Rate"|cut -d ":" -f 2|cut -d " " -f 1` 
if [ $BITRATE ]; then echo "$BITRATE"
                else echo "00 Mb/s" 
fi
