Skip to content

Instantly share code, notes, and snippets.

@andreberg
Last active June 7, 2021 11:55
Show Gist options
  • Save andreberg/c376c68c0a56f94f07e4f3afd4187251 to your computer and use it in GitHub Desktop.
Save andreberg/c376c68c0a56f94f07e4f3afd4187251 to your computer and use it in GitHub Desktop.
[Disable macOS Startup Sound] Disable startup chime without muting Volume (pre Big Sur) #macos #terminal #nvram #sounds #disable #catalina
sudo nvram SystemAudioVolume=%80
# If the above command doesn’t work for your particular Mac,
# then try repeating the above steps, but replace the Terminal
# command with one of the following:
sudo nvram SystemAudioVolume=%01
sudo nvram SystemAudioVolume=%00
sudo nvram SystemAudioVolume=" "
# to re-enable:
sudo nvram -d SystemAudioVolume
# For more info, see https://www.chriswrites.com/how-to-permanently-turn-off-your-macs-startup-sound/
# on Catalina you can also try:
sudo nvram StartupMute=%01
# see https://discussions.apple.com/thread/252294419
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment