From df294f83a67c69f09b308ae43f6a64a60e95f7ba Mon Sep 17 00:00:00 2001 From: Christian Hofstaedtler Date: Fri, 25 Nov 2011 15:10:08 +0100 Subject: [PATCH] Add welcome beep (disable with nobeep) --- usr_share/run-welcome | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/usr_share/run-welcome b/usr_share/run-welcome index 8dd379a..ae7a00d 100755 --- a/usr_share/run-welcome +++ b/usr_share/run-welcome @@ -27,6 +27,15 @@ if [ -r /etc/default/locale ] ; then fi fi +# welcome beep +case "$CMDLINE" in + *\ nobeep*) + ;; + *) + (for f in 2000 1500 1000 2000; do beep -f $f -l 150; done) & + ;; +esac + case "$CMDLINE" in # allow customized startup via bootoption startup: *startup=*) -- 2.1.4