X-Git-Url: https://git.p6c8.net/policy-templates.git/blobdiff_plain/53a9dad3d504c34ffc81f0fa9cc7e230f53c655c..20e5f741961e4b806851863092a838bda61fa4f3:/mac/README.md diff --git a/mac/README.md b/mac/README.md index 2e49437..ad7764c 100644 --- a/mac/README.md +++ b/mac/README.md @@ -19,12 +19,12 @@ For example, this policy: } ``` which would be set in the plist file like this: -```plist - Homepage - - URL - http://example.com - +```xml +Homepage + + URL + http://example.com + ``` Correctly writing the nested value with the `defaults` command can be hard, so you can flatten the keys by separating them with `__`, like this: ```bash @@ -34,3 +34,8 @@ Before any command line policies will work, you need to enable policies like thi ```bash sudo defaults write /Library/Preferences/org.mozilla.firefox EnterprisePoliciesEnabled -bool TRUE ``` +If you want to set user specific policies, use ~/Library without sudo: +```bash +defaults write ~/Library/Preferences/org.mozilla.firefox EnterprisePoliciesEnabled -bool TRUE +defaults write ~/Library/Preferences/org.mozilla.firefox Homepage__URL -string "http://example.com" +```