beep.sh 823 Bytes
Newer Older
Ad Schellevis's avatar
Ad Schellevis committed
1 2 3 4 5 6 7 8 9 10
#!/bin/sh

BEEP=`/usr/bin/grep -c disablebeep /conf/config.xml`
if [ $BEEP -gt 0 ]; then
	exit;
fi

# Standard note length
NOTELENGTH="25"

11
# Check for different HZ
Ad Schellevis's avatar
Ad Schellevis committed
12 13 14 15 16 17 18
if [ -f /boot/loader.conf ]; then
	HZ=`/usr/bin/grep -c kern.hz /boot/loader.conf`
	if [ "$HZ" = "1" ]; then
		NOTELENGTH="10"
	fi
fi

19
if [ -c "/dev/speaker" ]; then
Ad Schellevis's avatar
Ad Schellevis committed
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
		if [ "$1" = "start" ]; then
			/usr/local/bin/beep -p 500 $NOTELENGTH
			/usr/local/bin/beep -p 400 $NOTELENGTH
			/usr/local/bin/beep -p 600 $NOTELENGTH
			/usr/local/bin/beep -p 800 $NOTELENGTH
			/usr/local/bin/beep -p 800 $NOTELENGTH
		fi
		if [ "$1" = "stop" ]; then
			/usr/local/bin/beep -p 600 $NOTELENGTH
			/usr/local/bin/beep -p 800 $NOTELENGTH
			/usr/local/bin/beep -p 500 $NOTELENGTH
			/usr/local/bin/beep -p 400 $NOTELENGTH
			/usr/local/bin/beep -p 400 $NOTELENGTH
		fi
fi