41
9
When running 'Bash on Ubuntu on Windows' it often generates the Windows notification sound while typing. Common causes are when:
- I use auto-complete for commands (tab) and there are multiple command options,
- or when I backspace an already empty command line.
How do I disable these sound effects?
2What's the difference between putting
set bell-style none
in inputrc vs puttingbind "set bell-style none"
in .bashrc? Is one preferable to the other? – Jim – 2016-09-05T21:02:35.140The latter is preferable as it's a user-configured override file and won't be subject to overwrite due to updates on the distribution version. – AvatarKava – 2017-02-19T07:01:38.947
For some reason, when I type
Python
and I'm in the Python shell, the beep still goes off. Is there any way to fix this setting for the Python interpreter as well? – Pro Q – 2018-06-18T18:58:17.957