-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefaults
More file actions
27 lines (19 loc) · 930 Bytes
/
defaults
File metadata and controls
27 lines (19 loc) · 930 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/bash
# Disable sound effects on boot
sudo nvram StartupMute=%01
# Disable the “Are you sure you want to open this application?” dialog
defaults write com.apple.LaunchServices LSQuarantine -bool false
# Show all filename extensions in Finder
defaults write NSGlobalDomain AppleShowAllExtensions -bool true
# Disable the warning when changing a file extension
defaults write com.apple.finder FXEnableExtensionChangeWarning -bool false
# Use list view in all Finder windows by default
defaults write com.apple.finder FXPreferredViewStyle -string "clmv"
# Set the icon size of Dock items to 64 pixels
defaults write com.apple.dock tilesize -int 64
# Use plain text mode for new TextEdit documents
defaults write com.apple.TextEdit RichText -int 0
echo '++++++++++++++++++++++++++++++'
echo '++++++++++++++++++++++++++++++'
echo 'All done!'
echo 'Some of these changes might require a logout/restart to take effect'