如何在Windows 10上禁用WSL中的可视和音频铃声/蜂鸣声?
当前回答
由于终端机的唯一噪音是铃声,如果你想让它在任何地方都关闭,在Windows上bash最简单的方法是:
在提示符处捣碎一堆退格键 右键单击声音图标并选择打开音量混音器 将控制台窗口主机上的音量降低到零
其他回答
取消/etc/inputrc中的set bell-style none注释,并使用setterm - length 0创建.bash_profile并不能阻止vim发出哔哔声。
对我有用的是在我的主目录中创建一个.vimrc文件,并设置visualbell。
来源:https://linuxconfig.org/turn-off-beep-bell-on-linux-terminal
除了jgr208说的,你可能有一个~/。配置文件已经和~/。Bash_profile可能不存在,我就是这种情况。
在这种情况下,将setterm - length 0添加到.profile中。
如果你创建了.bash_profile,你的.profile将被忽略,Windows在那里写的任何东西都将无法工作。
由于终端机的唯一噪音是铃声,如果你想让它在任何地方都关闭,在Windows上bash最简单的方法是:
在提示符处捣碎一堆退格键 右键单击声音图标并选择打开音量混音器 将控制台窗口主机上的音量降低到零
To disable the beep in bash you need to uncomment (or add if not already there) the line set bell-style none in your /etc/inputrc file. Note: Since it is a protected file you need to be a privileged user to edit it (i.e. launch your text editor with something like sudo <editor> /etc/inputrc). To disable the beep and the visual bell also in vim you need to add the following to your ~/.vimrc file: set visualbell set t_vb= To disable the beep also in less (i.e. also in man pages and when using "git diff") you need to add export LESS="$LESS -R -Q" in your ~/.profile file.
它不是专门针对Windows 10的。 但是如果您想删除zsh的钟形终端,只需使用zshrc中的正确选项。(对于vim,答案已经发布)
unsetopt beep
http://zsh.sourceforge.net/Doc/Release/Options.html
我很快就找到了这个选项,但如果它在这个帖子上,我会更快地找到它^^
hf
推荐文章
- bash:错误的替换
- 如何在bash中删除字符后的所有文本?
- 如何配置git bash命令行补全?
- /bin/sh: apt-get:未找到
- 如何检索给定相对的绝对路径
- 图形化对?
- 我如何能匹配一个字符串与正则表达式在Bash?
- 为什么cURL返回错误“(23)Failed writing body”?
- 在bash脚本中否定if条件
- 如何撤消“set -e”使bash立即退出,如果任何命令失败?
- 如何在docker映像的新容器中运行bash ?
- 管道命令输出到tee,但也保存退出代码的命令
- 如何自动添加用户帐户和密码与Bash脚本?
- 如何在bash脚本中检查文件名的扩展名?
- 使用bash的变量中第一个大写字符