1
0
mirror of https://github.com/danbee/mac-setup synced 2025-03-04 08:39:10 +00:00

Compare commits

...

2 Commits

Author SHA1 Message Date
54e7c1fbd8
Switch on old(?) boot chime
Why would you turn this off Apple?!?
2020-02-26 11:37:09 -05:00
fb54691a51
Don't remove the spring loading delay
It's really annoying.
2020-02-26 11:36:52 -05:00

View File

@ -7,6 +7,13 @@ osascript -e 'tell application "System Preferences" to quit'
# Ask for the administrator password upfront # Ask for the administrator password upfront
sudo -v sudo -v
###############################################################################
# Hardware tweaks #
###############################################################################
# Switch on the old boot chime
sudo nvram StartupMute=%00
############################################################################### ###############################################################################
# General UI/UX # # General UI/UX #
############################################################################### ###############################################################################
@ -168,9 +175,6 @@ defaults write com.apple.finder FXEnableExtensionChangeWarning -bool false
# Enable spring loading for directories # Enable spring loading for directories
defaults write NSGlobalDomain com.apple.springing.enabled -bool true defaults write NSGlobalDomain com.apple.springing.enabled -bool true
# Remove the spring loading delay for directories
defaults write NSGlobalDomain com.apple.springing.delay -float 0
# Avoid creating .DS_Store files on network or USB volumes # Avoid creating .DS_Store files on network or USB volumes
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true
defaults write com.apple.desktopservices DSDontWriteUSBStores -bool true defaults write com.apple.desktopservices DSDontWriteUSBStores -bool true