From ddd83bc0d991527fdde61923a13e816b6a3b183b Mon Sep 17 00:00:00 2001 From: Dylan Arbour Date: Mon, 8 Jan 2024 13:32:54 -0500 Subject: [PATCH] Add Safari and Window Manager defaults --- .macOS | 29 +++++++++++++++++++++++------ 1 file changed, 23 insertions(+), 6 deletions(-) diff --git a/.macOS b/.macOS index 1a46441..550dc06 100755 --- a/.macOS +++ b/.macOS @@ -23,9 +23,9 @@ defaults write NSGlobalDomain NSAutomaticSpellingCorrectionEnabled -bool false # # Remove date and day of the week from time -defaults write com.apple.menuextra.clock 'ShowAMPM' -bool true -defaults write com.apple.menuextra.clock 'ShowDate' -int 2 -defaults write com.apple.menuextra.clock 'ShowDayOfWeek' -bool false +defaults write com.apple.menuextra.clock ShowAMPM -bool true +defaults write com.apple.menuextra.clock ShowDate -int 2 +defaults write com.apple.menuextra.clock ShowDayOfWeek -bool false # Disable keyboard menu defaults write com.apple.TextInputMenu visible -bool false @@ -76,19 +76,36 @@ defaults write com.apple.dock magnification -bool false defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true +## Safari +# + +# Set homepage to start page +USER=$(whoami) +sudo dscl . mcxset /Users/$USER com.apple.Safari HomePage always -string "favorites://" + + ## Siri # -# Disable Siri +# Disable Siri on Menu defaults write com.apple.Siri StatusMenuVisible -bool false -defaults write com.apple.assistant.support 'Assistant Enabled' -bool false + +# Disable "Hey Siri" voice triggers +defaults write com.apple.Siri VoiceTriggerUserEnabled -bool false ## Time Machine # # Disable popup when new disk is mounted -defaults write com.apple.TimeMachine 'DoNotOfferNewDisksForBackup' -bool true +defaults write com.apple.TimeMachine DoNotOfferNewDisksForBackup -bool true + + +## Window Manager +# + +# Disable show desktop on click +defaults write com.apple.WindowManager EnableStandardClickToShowDesktop -bool false ## Restart services