Page 1 of 1

Linux Alert Beep Sound

Posted: Wed Feb 26, 2025 9:48 am
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

Re: Linux Alert Beep Sound

Posted: Sun Mar 02, 2025 6:58 pm
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.