I configured my applications to beep when done (helps me multitask on long runs). On windows it was simple:
def beep_please():
"""Beep on Windows"""
if os.name == 'nt':
import winsound #@UnresolvedImport
winsound.MessageBeep(winsound.MB_ICONEXCLAMATION)
import atexit
atexit.register(beep_please)
The problem is I recently switched to Linux and simple beeping doesn't work.
Printing '\a'
doesn't work either.
Help?