Linux Alert Beep Sound

Linux specific forum
User avatar
Piero
Addict
Addict
Posts: 923
Joined: Sat Apr 29, 2023 6:04 pm
Location: Italy

Linux Alert Beep Sound

Post by Piero »

Please see the beep() procedure on https://www.purebasic.fr/english/viewto ... 18#p634618 and tell me if you know a better (simpler) method

Thanks in advance
infratec
Always Here
Always Here
Posts: 7618
Joined: Sun Sep 07, 2008 12:45 pm
Location: Germany

Re: Linux Alert Beep Sound

Post by infratec »

If you have a console:

Code: Select all

Print(#BEL$)
To test:

Code: Select all

OpenConsole()
Print(#BEL$)
Delay(1000)
The delay is only that you can here the beep befor the code is terminating.
Post Reply