~ubuntu-branches/ubuntu/natty/xfce4-genmon-plugin/natty

« back to all changes in this revision

Viewing changes to scripts/samples.txt

  • Committer: Bazaar Package Importer
  • Author(s): Yves-Alexis Perez
  • Date: 2006-07-26 17:48:57 UTC
  • Revision ID: james.westby@ubuntu.com-20060726174857-4s26rleg0b6w4ne0
ImportĀ upstreamĀ versionĀ 2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
$Revision: 1.1 $
 
2
 
 
3
The following samples were provided by Edward Herr
 
4
 
 
5
CPU & HD temp script:
 
6
 
 
7
#!/bin/bash
 
8
CPUTEMP=`acpi -ABt | cut -d " " -f 9 | cut -d "." -f 1`
 
9
DISKTEMP=`hddtemp -n /dev/hda`
 
10
echo cpu $CPUTEMP 
 
11
echo hda $DISKTEMP
 
12
 
 
13
and wireless bitrate...
 
14
 
 
15
#!/bin/bash
 
16
BITRATE=`/sbin/iwconfig eth1|grep "Bit Rate"|cut -d ":" -f 2|cut -d " " -f 1` 
 
17
if [ $BITRATE ]; then echo "$BITRATE"
 
18
                else echo "00 Mb/s" 
 
19
fi