Created
June 9, 2023 20:53
-
-
Save aliceisjustplaying/dd3217daf02f6fbd20f8db76ce7506b1 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
#!/bin/bash | |
sudo scutil --set ComputerName "COMPUTERNAME" | |
sudo scutil --set HostName "COMPUTERNAME" | |
sudo scutil --set LocalHostName "COMPUTERNAME" | |
sudo defaults write /Library/Preferences/SystemConfiguration/com.apple.smb.server NetBIOSName -string "COMPUTERNAME" | |
defaults -currentHost write -g AppleFontSmoothing -int 0 | |
defaults write NSGlobalDomain NSUseAnimatedFocusRing -bool false | |
defaults write NSGlobalDomain PMPrintingExpandedStateForPrint -bool true | |
defaults write NSGlobalDomain PMPrintingExpandedStateForPrint2 -bool true | |
defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode -bool true | |
defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode2 -bool true | |
defaults write NSGlobalDomain NSDocumentSaveNewDocumentsToCloud -bool false | |
defaults write com.apple.print.PrintingPrefs "Quit When Finished" -bool true | |
defaults write com.apple.screencapture type -string "png" | |
defaults write com.apple.screencapture disable-shadow -bool true | |
defaults write com.apple.finder QuitMenuItem -bool true | |
defaults write com.apple.finder DisableAllAnimations -bool true | |
defaults write com.apple.finder ShowStatusBar -bool true | |
defaults write com.apple.finder ShowPathbar -bool true | |
defaults write com.apple.finder FXPreferredViewStyle -string "Nlsv" | |
defaults write com.apple.finder WarnOnEmptyTrash -bool false | |
defaults write com.apple.NetworkBrowser BrowseAllInterfaces -bool true | |
chflags nohidden ~/Library && xattr -d com.apple.FinderInfo ~/Library | |
sudo chflags nohidden /Volumes | |
defaults write com.apple.finder FXInfoPanesExpanded -dict General -bool true OpenWith -bool true Privileges -bool true | |
defaults write com.apple.dock tilesize -int 32 | |
defaults write com.apple.dock launchanim -bool false | |
defaults write com.apple.dock autohide-delay -float 0 | |
defaults write com.apple.dock autohide-time-modifier -float 0 | |
defaults write com.apple.Safari WebKitTabToLinksPreferenceKey -bool true | |
defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2TabsToLinks -bool true | |
defaults write com.apple.Safari WebKitTabToLinksPreferenceKey -bool false | |
defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2TabsToLinks -bool false | |
defaults write com.apple.Safari ShowFullURLInSmartSearchField -bool true | |
defaults write com.apple.Safari IncludeInternalDebugMenu -bool true | |
defaults write com.apple.Safari IncludeDevelopMenu -bool true | |
defaults write com.apple.Safari WebKitDeveloperExtrasEnabledPreferenceKey -bool true | |
defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2DeveloperExtrasEnabled -bool true | |
defaults write NSGlobalDomain WebKitDeveloperExtras -bool true | |
defaults write com.apple.terminal StringEncodings -array 4 | |
defaults write com.apple.Terminal ShowLineMarks -int 0 | |
defaults write com.apple.TimeMachine DoNotOfferNewDisksForBackup -bool true | |
defaults write com.apple.ActivityMonitor OpenMainWindow -bool true | |
defaults write com.apple.ActivityMonitor ShowCategory -int 0 | |
defaults write com.apple.ActivityMonitor SortColumn -string "CPUUsage" | |
defaults write com.apple.ActivityMonitor SortDirection -int 0 | |
defaults write com.apple.TextEdit PlainTextEncoding -int 4 | |
defaults write com.apple.TextEdit PlainTextEncodingForWrite -int 4 | |
defaults write com.apple.TextEdit RichText -int 0 | |
defaults write com.apple.DiskUtility DUDebugMenuEnabled -bool true | |
defaults write com.apple.DiskUtility advanced-image-options -bool true | |
defaults write com.apple.messageshelper.MessageController SOInputLineSettings -dict-add "automaticEmojiSubstitutionEnablediMessage" -bool false | |
defaults write com.apple.messageshelper.MessageController SOInputLineSettings -dict-add "automaticQuoteSubstitutionEnabled" -bool false | |
defaults write com.apple.messageshelper.MessageController SOInputLineSettings -dict-add "continuousSpellCheckingEnabled" -bool false | |
defaults write com.google.Chrome PMPrintingExpandedStateForPrint2 -bool true | |
defaults write com.google.Chrome.canary PMPrintingExpandedStateForPrint2 -bool true | |
defaults write NSGlobalDomain NSAutomaticSpellingCorrectionEnabled -bool false | |
defaults write com.apple.Safari WebAutomaticSpellingCorrectionEnabled -bool false | |
defaults write -g ApplePressAndHoldEnabled -bool false | |
defaults write -g NSAutomaticWindowAnimationsEnabled -bool false | |
defaults write -g NSScrollAnimationEnabled -bool false | |
defaults write -g NSWindowResizeTime -float 0.001 | |
defaults write -g QLPanelAnimationDuration -float 0 | |
defaults write -g NSScrollViewRubberbanding -bool false | |
defaults write -g NSDocumentRevisionsWindowTransformAnimation -bool false | |
defaults write -g NSToolbarFullScreenAnimationDuration -float 0 | |
defaults write -g NSBrowserColumnAnimationSpeedMultiplier -float 0 | |
defaults write com.apple.dock autohide-time-modifier -float 0 | |
defaults write com.apple.dock autohide-delay -float 0 | |
defaults write com.apple.dock expose-animation-duration -float 0 | |
defaults write com.apple.dock springboard-show-duration -float 0 | |
defaults write com.apple.dock springboard-hide-duration -float 0 | |
defaults write com.apple.dock springboard-page-duration -float 0 | |
defaults write com.apple.finder DisableAllAnimations -bool true | |
defaults write com.apple.Mail DisableSendAnimations -bool true | |
defaults write com.apple.Mail DisableReplyAnimations -bool true | |
defaults write com.apple.GameController bluetoothPrefsMenuLongPressAction -integer 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment