I wish to play a sound when a slow part of analysis in a Jupyter notebook has completed. There are many well-documented ways to do this with the Python kernel in Jupyter (e.g. Jupyter-Beeper). However, the notebook I am working with requires the Jupyter notebook bash kernel.
In a bash console, a noise can be played with
echo ^G
Where ^G is control-G with a special character for control. However, this is not working when I try it in a Jupyter notebook.
How can I play any type of noise in the Jupyter bash kernel, when I am accessing my notebook through a web browser?