Search code examples
pythonxterm

Generate audio bell in terminal using Python


How can I generate audio bell in xterm type terminal?


Solution

  • Simple, print the bell character. In Python:

    print('\a')
    

    From bash shell:

    echo $'\a'
    

    Note that on some terminals, the bell can be disabled. In others, the bell can be replaced with a visual bell in the shape of a flashing screen background.