zeek on Wed, 11 Jun 2003 19:47:18 -0400 |
Although this is in regards to turning the bell *off*, it talks about setting the freq and duration: http://www.ibiblio.org/pub/Linux/docs/HOWTO/mini/Visual-Bell · ESC-[10;xx] selects the bell frequency in Hertz. The value should be in the range 21-32766, otherwise the result is undefined. If the `xx' argument is missing, the default value (750Hz) will apply, as in `ESC-[10]. · ESC-[11;xx] selects the bell duration, in milli-seconds. If you specify more than 2 seconds, the default applies (125ms). Once again, if the `xx' argument is missing (ESC-[11]) the default value will be used. To select, for example, a 50Hz pitch for one-second duration, you can "echo -e "\\33[10;50]\\33[11;1000]"" with bash (where "-e" means `understand Escape sequences'. If you use tcsh the same command spells "echo "\\033[10;50]\\033[11;1000]"". Cheers, -zeek Sparklehouse Media and Technologies http://sparklehouse.com > -----Original Message----- > From: plug-admin@lists.phillylinux.org > [mailto:plug-admin@lists.phillylinux.org]On Behalf Of zeek > Sent: Wednesday, June 11, 2003 7:34 PM > To: plug@lists.phillylinux.org > Subject: RE: [PLUG] System Bell - Beep! > > > > > Right on! It's the redirect to /dev/console that does it. As for different > tones, I remember coming across something that does this --also in an earlier > gnome setup? > > Thanks for all your suggestions. > > > Cheers, > -zeek > > Sparklehouse Media and Technologies > http://sparklehouse.com > > > > > -----Original Message----- > > From: plug-admin@lists.phillylinux.org > > [mailto:plug-admin@lists.phillylinux.org]On Behalf Of epike > > Sent: Wednesday, June 11, 2003 10:32 AM > > To: plug@lists.phillylinux.org > > Subject: Re: [PLUG] System Bell - Beep! > > > > > > Try this, it works for me (this is 5 bells). > > > > When your'e able to make the speaker ring different > > tunes pls let me know, I could use it (my server's > > also headless) > > > > > > /bin/echo -e -n "\a" > /dev/console; sleep 1; > > /bin/echo -e -n "\a" > /dev/console; sleep 1; > > /bin/echo -e -n "\a" > /dev/console; sleep 1; > > /bin/echo -e -n "\a" > /dev/console; sleep 1; > > /bin/echo -e -n "\a" > /dev/console; sleep 1; > > > > > > > > e.pike > > > > > > On Tue, 10 Jun 2003 22:10:01 -0400 > > "zeek" <zeek@sparklehouse.com> wrote: > > > > > > > > Greets PLUGgers, > > > > > > Does anyone know how to ring a system bell, a beep w/o additional > > software? I've > > > tried: > > > > > > echo -n -e "\a" and echo -n -e "\007" > > > > > > but neither of these are working --even for systems which ring > > bells on other > > > calls. > > > > > > > > > I want to work this into a BB monitoring alert. > > > > > > Cheers, > > > -zeek > > > > > > Sparklehouse Media and Technologies > > > http://sparklehouse.com > > > > > > > > > > > > _________________________________________________________________________ > > > Philadelphia Linux Users Group -- http://www.phillylinux.org > > > Announcements - http://lists.netisland.net/mailman/listinfo/plug-announce > > > General Discussion -- http://lists.netisland.net/mailman/listinfo/plug > > _________________________________________________________________________ > > Philadelphia Linux Users Group -- http://www.phillylinux.org > > Announcements - http://lists.netisland.net/mailman/listinfo/plug-announce > > General Discussion -- http://lists.netisland.net/mailman/listinfo/plug > > > > > _________________________________________________________________________ > Philadelphia Linux Users Group -- http://www.phillylinux.org > Announcements - http://lists.netisland.net/mailman/listinfo/plug-announce > General Discussion -- http://lists.netisland.net/mailman/listinfo/plug > _________________________________________________________________________ Philadelphia Linux Users Group -- http://www.phillylinux.org Announcements - http://lists.netisland.net/mailman/listinfo/plug-announce General Discussion -- http://lists.netisland.net/mailman/listinfo/plug
|
|