You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the command is defaults write com.apple.Safari [somekey] -string [somevalue], the config will be in com.apple.Safari.json with the respective JSON key->value pair. The script takes care of determining the data type. There are at least a few in the Safari one that aren't listed on macos-defaults.com.
You might also be interested in using MDM profiles to configure your mac. You can't actually use an MDM service if you're not a business, but you can still install a profile to configure e.g. mail accounts and things like that. Examples of that are here: https://github.com/cweagans/dotfiles/blob/main/dot_config/macos/private_profiles/private_macos.mobileconfig.tmpl (this file was mostly generated with iMazing Profile Editor and then edited to work with the Chezmoi templating stuff I have set up to e.g. pull passwords out of 1password). Not sure if you want to widen the scope of the website to include this kind of stuff, but it seems like it would be at least a good companion site for things that aren't configurable easily (or at all) through defaults.
The text was updated successfully, but these errors were encountered:
defaults
command existsI have a number of
defaults
settings listed in https://github.com/cweagans/dotfiles/tree/main/dot_config/macos with inline comments about what each one does.They are applied with this script: https://github.com/cweagans/dotfiles/blob/main/.chezmoiscripts/darwin/run_once_after_install_defaults.sh.tmpl
If the command is
defaults write com.apple.Safari [somekey] -string [somevalue]
, the config will be incom.apple.Safari.json
with the respective JSON key->value pair. The script takes care of determining the data type. There are at least a few in the Safari one that aren't listed on macos-defaults.com.You might also be interested in using MDM profiles to configure your mac. You can't actually use an MDM service if you're not a business, but you can still install a profile to configure e.g. mail accounts and things like that. Examples of that are here: https://github.com/cweagans/dotfiles/blob/main/dot_config/macos/private_profiles/private_macos.mobileconfig.tmpl (this file was mostly generated with iMazing Profile Editor and then edited to work with the Chezmoi templating stuff I have set up to e.g. pull passwords out of 1password). Not sure if you want to widen the scope of the website to include this kind of stuff, but it seems like it would be at least a good companion site for things that aren't configurable easily (or at all) through
defaults
.The text was updated successfully, but these errors were encountered: