From fa94531eabae4ea27a0554bc699df7c2717356c1 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Sat, 1 Oct 2005 18:31:10 +0000 Subject: * Add beep binary. * Add custom beep script which makes weird noises Requested-by: The Mob (support@) --- usr/local/bin/beep.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 usr/local/bin/beep.sh (limited to 'usr/local/bin') diff --git a/usr/local/bin/beep.sh b/usr/local/bin/beep.sh new file mode 100755 index 0000000..010786d --- /dev/null +++ b/usr/local/bin/beep.sh @@ -0,0 +1,21 @@ +#!/bin/sh + +if [ ! -x "`which beep`" ]; then + exit0 +fi + +if [ "$1" = "start" ]; then + beep -p 500 200 + beep -p 400 200 + beep -p 600 200 + beep -p 800 200 + beep -p 800 200 +fi +if [ "$1" = "stop" ]; then + beep -p 600 200 + beep -p 800 200 + beep -p 500 200 + beep -p 400 200 + beep -p 400 200 +fi + -- cgit v1.1