I'd like to prevent the Mac Terminal program from beeping, for example when there are multiple possible completions when I hit TAB. I looked in the preferences, but there's nothing about beeping.

link|improve this question

feedback

migrated from stackoverflow.com Jul 15 '10 at 13:36

This question came from our site for professional and enthusiast programmers.

4 Answers

up vote 12 down vote accepted
  1. Open Terminal.
  2. On the menu go to Terminal > Window Settings.
  3. In the Terminal Inspector window click on the drop-down list and select Emulation.
  4. Un-check the "Audible Bell" option. (You can also set "visible bell" which will cause your terminal to flash instead of beep)
link|improve this answer
Is that for Tiger? There's no Window Settings option in Leopard... – Jon Dec 30 '08 at 8:56
@Jon: Yes, that does not appear to be on Leopard. – ayaz Dec 30 '08 at 9:34
3  
Under Leopard, the same settings are avaliable under Terminal > Preferences, under the Settings > Advanced tabs. – Chris Lutz Sep 24 '09 at 2:34
feedback

I'm presuming you have Leopard, whose terminal is greatly improved over Tiger's.

Terminal menu --> Preferences --> Settings tab --> Advanced --> Bell.

Untick "Audible bell"

(btw, mine doesn't beep as far as I can tell, even though that setting is enabled for me)

link|improve this answer
It should play the standard sound warning, configurable in system preferences -> sound -> sound effects tab – Agos Jan 31 '10 at 1:00
feedback

put "set bell-style visible" in your ~/.bashrc

link|improve this answer
That only affects Bash, not everything. – Thorbjørn Ravn Andersen Jan 5 '10 at 14:28
@ThorbjørnRavnAndersen, it’s probably better to configure specific programs to not beep for specific events, rather than disabling the terminal bell altogether, since it’s usually used for things that may need the user’s attention. Going the other direction, if all beeps in the terminal are annoying, there’s a good chance the user will also find beeps annoying in other applications, in which case they should consider muting “sound effects” system-wide in System Preferences > Sound. – Chris Page Jan 5 at 21:07
feedback

System preferences --> sound --> then choose an alert sound [choose what you want]

then quit and reopen the terminal.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.