Re: make OpenBSD beep at start

2010-01-26 Thread Jacob Meuser
On Wed, Jan 27, 2010 at 11:18:50AM +1100, Aaron Mason wrote: > On Wed, Jan 27, 2010 at 9:02 AM, Jean-Francois wrote: > >> does this thing have an azalia(4)? because with at least some, the "beep" > >> volume and mute is controlled through the mixer. it should be unmuted > >> by default, but the

Re: make OpenBSD beep at start

2010-01-26 Thread Aaron Mason
On Wed, Jan 27, 2010 at 9:02 AM, Jean-Francois wrote: >> does this thing have an azalia(4)? because with at least some, the "beep" >> volume and mute is controlled through the mixer. it should be unmuted >> by default, but the volume could be low. but then this also depends on >> the codec ...

Re: make OpenBSD beep at start

2010-01-26 Thread Jean-Francois
> does this thing have an azalia(4)? because with at least some, the "beep" > volume and mute is controlled through the mixer. it should be unmuted > by default, but the volume could be low. but then this also depends on > the codec ... I didn't see a dmesg in this thread. if you do have an > a

Re: make OpenBSD beep at start

2010-01-25 Thread ropers
2010/1/25 Julian Leyh : > Am 24.01.10 01:32, schrieb jean-francois: >> >> Hi list, >> >> Can someone give a hin on how to make the speaker to beep for example with >> a command or a C program ? >> >> I started to write a little C program thinking there was a beep() >> functione, >> but it seems not

Re: make OpenBSD beep at start

2010-01-25 Thread Jacob Meuser
On Mon, Jan 25, 2010 at 09:02:47PM +0100, Jean-Francois wrote: > Le lundi 25 janvier 2010 18:55:21, vous avez icrit : > > 2010/1/25 Markus Hennecke : > > > jean-francois wrote: > > >> Can someone give a hin on how to make the speaker to beep for example > > >> with a command or a C program ? > > >

Re: make OpenBSD beep at start

2010-01-25 Thread Julian Leyh
Am 24.01.10 01:32, schrieb jean-francois: Hi list, Can someone give a hin on how to make the speaker to beep for example with a command or a C program ? I started to write a little C program thinking there was a beep() functione, but it seems not Regards. how about midiplay(1)?

Re: make OpenBSD beep at start

2010-01-25 Thread Jean-Francois
Le lundi 25 janvier 2010 18:55:21, vous avez icrit : > 2010/1/25 Markus Hennecke : > > jean-francois wrote: > >> Can someone give a hin on how to make the speaker to beep for example > >> with a command or a C program ? > > > > man speaker(4), if you are on i386 or amd64. > > I'm so stupid. Of cour

Re: make OpenBSD beep at start

2010-01-25 Thread ropers
2010/1/25 Markus Hennecke : > jean-francois wrote: >> Can someone give a hin on how to make the speaker to beep for example with >> a command or a C program ? > > man speaker(4), if you are on i386 or amd64. I'm so stupid. Of course it says right on that man page that there's /dev/speaker, so with

Re: make OpenBSD beep at start

2010-01-25 Thread Markus Hennecke
jean-francois wrote: > Can someone give a hin on how to make the speaker to beep for example with > a command or a C program ? man speaker(4), if you are on i386 or amd64. Kind regards, Markus

Re: make OpenBSD beep at start

2010-01-24 Thread Bryan Irvine
echo $'\a' On Sat, Jan 23, 2010 at 4:32 PM, jean-francois wrote: > Hi list, > > Can someone give a hin on how to make the speaker to beep for example with > a command or a C program ? > > I started to write a little C program thinking there was a beep() functione, > but it seems not > > Reg

Re: make OpenBSD beep at start

2010-01-24 Thread ropers
Those only work *on the console*, which may not be on the actual OpenBSD box (because the user may be using serial console redirection/ssh/whatever. There may still be uses for a program that produces a PC speaker beep on the machine it runs on. regards, --ropers 2010/1/24 Constantine A. Murenin

Re: make OpenBSD beep at start

2010-01-24 Thread Otto Moerbeek
On Sun, Jan 24, 2010 at 12:10:51AM -0800, J.C. Roberts wrote: > On Sun, 24 Jan 2010 01:32:14 +0100 "jean-francois" > wrote: > > > Hi list, > > > > Can someone give a hin on how to make the speaker to beep for example > > with a command or a C program ? > > > > I started to write a little C pro

Re: make OpenBSD beep at start

2010-01-24 Thread J.C. Roberts
On Sun, 24 Jan 2010 01:32:14 +0100 "jean-francois" wrote: > Hi list, > > Can someone give a hin on how to make the speaker to beep for example > with a command or a C program ? > > I started to write a little C program thinking there was a beep() > functione, but it seems not > > Regards.

Re: make OpenBSD beep at start

2010-01-23 Thread Constantine A. Murenin
On 23/01/2010, joshua stein wrote: > > Can someone give a hin on how to make the speaker to beep for example with > > a command or a C program ? > > > echo > > (that's control+v, then control+g) or /usr/bin/printf "\a" or putchar('\a'); C.

Re: make OpenBSD beep at start

2010-01-23 Thread joshua stein
> Can someone give a hin on how to make the speaker to beep for example with > a command or a C program ? echo  (that's control+v, then control+g)

make OpenBSD beep at start

2010-01-23 Thread jean-francois
Hi list, Can someone give a hin on how to make the speaker to beep for example with a command or a C program ? I started to write a little C program thinking there was a beep() functione, but it seems not Regards.