content: "A list of macOS defaults commands with demos ✨"
- name: "description"
content: "You've already copied `defaults write` commands. Sometimes you don't know what they do and are not sure they still work. This list of macOS defaults commands is here to help."
- property: "og:description"
content: "You've already copied `defaults write` commands. Sometimes you don't know what they do and are not sure they still work. This list of macOS defaults commands is here to help."
<em>macOS applications and other programs</em> use the <code>defaults</code> system to record user preferences and other information to be maintained when the application isn't running (font for new documents, or the position of an Info panel).
Much of this information is accessible through an application's Preferences panel but sometimes they're hidden.
</p>
<p>
User defaults belong to <strong>domains</strong>, which typically correspond to individual applications.
Applications, system services, and other programs have their own domains, they also share a domain named <strong>NSGlobalDomain</strong>.
If a default isn't specified in the application's domain, it may be specified in NSGlobalDomain.
</p>
<p>
Each domain has a dictionary of keys and values representing its defaults; e.g. <strong>"Default Font" = "Helvetica"</strong>.
<strong>Keys</strong> are strings, <strong>values</strong> can be complex data structures comprising arrays,
dictionaries, strings, and binary data. They're stored as XML Property List.
</p>
<p>The <code>defaults</code> command line interface is a way to interact with these values.</p>
Please update [this file](https://github.com/yannbertrand/macos-defaults/blob/main/defaults.yml) that I use to [build multiple websites](https://github.com/yannbertrand/macos-defaults/#readme) like this one.
Thank you! I built it using [VuePress](https://vuepress.vuejs.org/). Take a look at [my report](https://github.com/yannbertrand/macos-defaults/tree/main/build#readme) if you want to use it.