2019-07-22 18:07:59 +00:00
|
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
# Save screenshots to the ~/Downloads folder
|
|
|
|
|
defaults write http://com.apple.screencapture location ~/Downloads
|
|
|
|
|
# Finder: show hidden files by default
|
2019-08-06 12:47:25 +00:00
|
|
|
|
defaults write com.apple.finder AppleShowAllFiles YES
|
2019-07-22 18:07:59 +00:00
|
|
|
|
# Finder: show all filename extensions
|
|
|
|
|
defaults write NSGlobalDomain AppleShowAllExtensions -bool true
|
|
|
|
|
# Finder: show path bar
|
|
|
|
|
defaults write com.apple.finder ShowPathbar -bool true
|
|
|
|
|
#defaults write com.apple.PowerChime ChimeOnNoHardware -bool true # still KO after closing lid
|
|
|
|
|
#killall PowerChime
|
|
|
|
|
|
2019-08-11 19:44:01 +00:00
|
|
|
|
# Disable the sound effects on boot
|
|
|
|
|
sudo nvram SystemAudioVolume=" "
|
|
|
|
|
|
|
|
|
|
# Only show scrollbars when scrolling
|
|
|
|
|
defaults write NSGlobalDomain AppleShowScrollBars -string "WhenScrolling"
|
|
|
|
|
|
|
|
|
|
# Disable smart quotes as they’re annoying when typing code
|
|
|
|
|
defaults write NSGlobalDomain NSAutomaticQuoteSubstitutionEnabled -bool false
|
|
|
|
|
# Disable smart dashes as they’re annoying when typing code
|
|
|
|
|
defaults write NSGlobalDomain NSAutomaticDashSubstitutionEnabled -bool false
|
|
|
|
|
|
2019-07-22 18:07:59 +00:00
|
|
|
|
# Avoid creating .DS_Store files on network or USB volumes
|
|
|
|
|
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true
|
|
|
|
|
defaults write com.apple.desktopservices DSDontWriteUSBStores -bool true
|