Created
January 10, 2016 01:11
-
-
Save felipecabargas/23946bcb2acde87c708a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defaults write com.apple.BluetoothAudioAgent "Apple Bitpool Min (editable)" -int 40 | |
defaults write NSGlobalDomain ApplePressAndHoldEnabled -bool false | |
defaults write -g com.apple.trackpad.scaling 2 | |
defaults write -g com.apple.mouse.scaling 2.5 | |
defaults write NSGlobalDomain AppleFontSmoothing -int 2 | |
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true | |
defaults write com.apple.dock tilesize -int 36 | |
defaults write com.apple.dock expose-animation-duration -float 0.1 | |
defaults write com.apple.mail AddressesIncludeNameOnPasteboard -bool false | |
mkdir -p ~/Downloads/Incomplete | |
defaults write org.m0k.transmission UseIncompleteDownloadFolder -bool true | |
defaults write org.m0k.transmission IncompleteDownloadFolder -string "${HOME}/Downloads/Incomplete" | |
defaults write org.m0k.transmission AutoImportDirectory -string "${HOME}/Downloads" | |
defaults write org.m0k.transmission DownloadAsk -bool false | |
defaults write org.m0k.transmission DeleteOriginalTorrent -bool true | |
defaults write org.m0k.transmission WarningDonate -bool false | |
defaults write org.m0k.transmission WarningLegal -bool false | |
for app in "Activity Monitor" "Address Book" "Calendar" "Contacts" "cfprefsd" \ | |
"Dock" "Finder" "Mail" "Messages" "Safari" "SystemUIServer" \ | |
"Terminal" "Transmission"; do | |
killall "${app}" > /dev/null 2>&1 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment