Skip to main content

Disable Terminal Chime

Linux

User Scope

Set this line in ~/.inputrc

set bell-style none

Then, run this command:

bind -f ~/.inputrc

System Wide

Set this line in /etc/inputrc

set bell-style none

Then, run this command:

bind -f /etc/inputrc

Vim - User Scope

Add this line to ~/.vimrc

set visualbell

Zsh - User Scope

Add this line to ~/.zshrc

unsetopt BEEP

PowerShell - User Scope

Run this command in PowerShell and re-launch PowerShell

'Set-PSReadLineOption -BellStyle None' >> $profile