Skip to content

Commit

Permalink
Add Safari and Window Manager defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
arbourd committed Jan 8, 2024
1 parent d5332a3 commit 7068f46
Showing 1 changed file with 22 additions and 6 deletions.
28 changes: 22 additions & 6 deletions .macOS
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -76,19 +76,35 @@ defaults write com.apple.dock magnification -bool false
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true


## Safari
#

# Set homepage to start page
sudo dscl . mcxset /Users/$(whoami) 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
Expand Down

0 comments on commit 7068f46

Please sign in to comment.