feat: more goodies
parent
cf63897ca7
commit
e12eaab15a
|
@ -10,4 +10,5 @@ iterm2
|
||||||
licecap
|
licecap
|
||||||
obsidian
|
obsidian
|
||||||
raycast
|
raycast
|
||||||
webex
|
slack
|
||||||
|
font-fira-code
|
||||||
|
|
|
@ -26,6 +26,7 @@ echo "Finished setting up zsh as default shell"
|
||||||
|
|
||||||
echo "Installing Homebrew casks..."
|
echo "Installing Homebrew casks..."
|
||||||
echo
|
echo
|
||||||
|
brew tap caskroom/fonts
|
||||||
brew tap homebrew/cask-versions
|
brew tap homebrew/cask-versions
|
||||||
cat Caskfile | xargs brew install --cask
|
cat Caskfile | xargs brew install --cask
|
||||||
echo
|
echo
|
||||||
|
|
|
@ -2,6 +2,10 @@
|
||||||
echo "Setting macOS defaults..."
|
echo "Setting macOS defaults..."
|
||||||
echo
|
echo
|
||||||
|
|
||||||
|
# Close any open System Preferences panes, to prevent them from overriding
|
||||||
|
# settings we’re about to change
|
||||||
|
osascript -e 'tell application "System Preferences" to quit'
|
||||||
|
|
||||||
# Always open everything in Finder's list view
|
# Always open everything in Finder's list view
|
||||||
defaults write com.apple.Finder FXPreferredViewStyle Nlsv
|
defaults write com.apple.Finder FXPreferredViewStyle Nlsv
|
||||||
|
|
||||||
|
@ -29,5 +33,27 @@ defaults write com.apple.screencapture location -string "${HOME}/Documents/Scree
|
||||||
# Don’t display the annoying prompt when quitting iTerm
|
# Don’t display the annoying prompt when quitting iTerm
|
||||||
defaults write com.googlecode.iterm2 PromptOnQuit -bool false
|
defaults write com.googlecode.iterm2 PromptOnQuit -bool false
|
||||||
|
|
||||||
|
# Save to disk (not to iCloud) by default
|
||||||
|
defaults write NSGlobalDomain NSDocumentSaveNewDocumentsToCloud -bool false
|
||||||
|
|
||||||
|
# Finder: show all filename extensions
|
||||||
|
defaults write NSGlobalDomain AppleShowAllExtensions -bool true
|
||||||
|
|
||||||
|
# Remove the auto-hiding Dock delay
|
||||||
|
defaults write com.apple.dock autohide-delay -float 0
|
||||||
|
|
||||||
|
# Disable the “Are you sure you want to open this application?” dialog
|
||||||
|
defaults write com.apple.LaunchServices LSQuarantine -bool false
|
||||||
|
|
||||||
|
# Minimize windows into their application’s icon
|
||||||
|
defaults write com.apple.dock minimize-to-application -bool true
|
||||||
|
|
||||||
|
# Disable smart quotes and smart dashes
|
||||||
|
defaults write NSGlobalDomain NSAutomaticQuoteSubstitutionEnabled -bool false
|
||||||
|
defaults write NSGlobalDomain NSAutomaticDashSubstitutionEnabled -bool false
|
||||||
|
|
||||||
|
# Disable auto-correct
|
||||||
|
defaults write NSGlobalDomain NSAutomaticSpellingCorrectionEnabled -bool false
|
||||||
|
|
||||||
echo "Finished setting macOS defaults."
|
echo "Finished setting macOS defaults."
|
||||||
echo
|
echo
|
||||||
|
|
Loading…
Reference in New Issue