如何在Windows 10上禁用WSL中的可视和音频铃声/蜂鸣声?
当前回答
找到.bash_profile文件的位置,并在文件中输入以下内容:
设置项 -长度 0
它会将哔哔声发生的时间设置为0,因此没有哔哔声。
其他回答
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终端设置中,选择配置文件,然后点击“高级”>“铃声通知”
然后关掉它:
找到.bash_profile文件的位置,并在文件中输入以下内容:
设置项 -长度 0
它会将哔哔声发生的时间设置为0,因此没有哔哔声。
它不是专门针对Windows 10的。 但是如果您想删除zsh的钟形终端,只需使用zshrc中的正确选项。(对于vim,答案已经发布)
unsetopt beep
http://zsh.sourceforge.net/Doc/Release/Options.html
我很快就找到了这个选项,但如果它在这个帖子上,我会更快地找到它^^
hf
取消/etc/inputrc中的set bell-style none注释,并使用setterm - length 0创建.bash_profile并不能阻止vim发出哔哔声。
对我有用的是在我的主目录中创建一个.vimrc文件,并设置visualbell。
来源:https://linuxconfig.org/turn-off-beep-bell-on-linux-terminal
推荐文章
- 如何循环通过一个目录递归删除具有某些扩展名的文件
- 在Bash中获取日期(比当前时间早一天)
- Linux: kill后台任务
- 在Windows10上打开/创建内部网络Vagrant失败
- 在OSX中永久设置PATH环境变量
- 删除Bash脚本中的重复条目
- 如何将Bash命令的输出分配给变量?
- 在bash中传递数组作为参数
- 如何在shell中为for循环添加前导零?
- Bash中单方括号和双方括号的区别
- 我如何找到传递给Bash脚本的参数的数量?
- 查找文件名以指定字符串开头的所有文件?
- 如何在Bash中逐行合并两个文件
- 我如何得到bash完成工作与别名?
- 如何设置别名在Git Bash的Windows?