Never been to CodeSnippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)

Disable audible bell in Terminal.app (See related posts)

defaults read com.apple.Terminal Bell
#defaults write com.apple.Terminal Bell -string YES
defaults write com.apple.Terminal Bell -string NO


# some further options to consider
#defaults read com.apple.Terminal FocusFollowsMouse
#defaults write com.apple.Terminal FocusFollowsMouse -string YES
#defaults write com.apple.Terminal FocusFollowsMouse -string NO

#defaults read com.apple.Terminal OptionClickToMoveCursor
#defaults write com.apple.Terminal OptionClickToMoveCursor -string YES
#defaults write com.apple.Terminal OptionClickToMoveCursor -string NO

You need to create an account or log in to post comments to this site.