uncategorized

Disable system beep from Terminal

From https://opensolaris.org/jive/message.jspa?messageID=219271#219271

1
xset -b

Or add to your ~/.bashrc:

1
echo "xset -b" >>~/.bashrc

You may also need to add it to your ~/.profile

1
echo "xset -b" >>~/.profile

Note: Login-ready beep will still occur. This just disables the beep that occurs when you try to use Tab to auto-complete commands.

Share