dotfiles/os/macos/app_store.pref.fish

25 lines
815 B
Fish
Raw Normal View History

#!/usr/bin/env fish
source "$DOT/script/utils.fish"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
print_subtitle "App Store"
execute "defaults write com.apple.commerce AutoUpdate -bool true" \
2024-02-03 12:05:02 -08:00
"Turn on auto-update"
execute "defaults write com.apple.SoftwareUpdate AutomaticCheckEnabled -bool true" \
2024-02-03 12:05:02 -08:00
"Enable automatic update check"
execute "defaults write come.apple.SoftwareUpdate AutomaticDownload -int 1" \
2024-02-03 12:05:02 -08:00
"Download newly available updates in background"
execute "defaults write com.apple.SoftwareUpdate CriticalUpdateInstall -int 1" \
2024-02-03 12:05:02 -08:00
"Install system data files and security updates"
2024-02-04 15:52:43 -08:00
execute "defaults write com.apple.SoftwareUpdate ConfigDataInstall -int 1" \
"Automatically download apps purchased on other Macs"
killall "App Store" &>/dev/null