When you power up or restart your Mac, it makes the traditional chime that Apple Macs are synonymous with. But have you reached that point yet, where you wish you had the ability to turn it off? The mac startup sound, while lovely, isn’t exactly ideal when you’re in a quiet place where you don’t want to draw attention to yourself. So if you’ve had enough, just follow these quick and easy steps to turn off the mac startup sound.
[adrotate banner=”9″]
To Turn Off The Mac Startup Sound Temporarily
This is pretty straightforward to do. However, if you forget to do it before you shut down you’ll still have the mac startup sound when you boot up again.
To turn off your mac startup sound temporarily simply turn your volume in the top bar down to “0” right before you shut down or restart. You’ll find a nice silent load up next time you boot the machine.
You will also have to do this every time before you shut down your mac, so bare that in mind also.
[adrotate banner=”11″]
How To Turn Off The Mac Startup Sound/Chime Permanently.
- Open Terminal on your mac. (If you don’t know where Terminal is, look for it in the search bar by pressing command + space bar – then type in Terminal.)
- Copy the following code:sudo nano /Library/Scripts/sound-off.sh
- Paste it into Terminal.
- Enter your system password when prompted to do so.
- The following window will then open.
- Copy the following and paste it:
#!/bin/bashosascript -e ‘set volume output muted 1’
[adrotate banner=”12″] - Then press CTRL and O
- Followed by CTRL and X to exit the window.
- Now you’ll follow the same steps to create a restore script.
- Open Terminal on your mac.
- Copy the following code:sudo nano /Library/Scripts/sound-on.sh
- Paste it into Terminal.
- Enter your system password when prompted to do so.
- Copy the following and paste it:
#!/bin/bash
osascript -e ‘set volume 4’[adrotate banner=”13″] - Then press CTRL and O
- Followed by CTRL and X to exit the window.
- Once back in the Terminal window again, copy and paste the following:Â sudo chmod u+x /Library/Scripts/sound-off.sh
- Then enter:Â sudo chmod u+x /Library/Scripts/sound-on.sh
- Followed by:Â sudo defaults write com.apple.loginwindow LogoutHook /Library/Scripts/sound-off.sh
- And lastly, sudo defaults write com.apple.loginwindow LoginHook /Library/Scripts/sound-on.sh
Now restart the mac, and you’ll see that the startup sound is gone.
When you’ve finished entering it in, restart your mac to make sure it has taken effect.