In our Mac classrooms we would like to standardize the right-click (as secondary button) feature on new user accounts, without having to manually make the change on setup. I'm attempting to do this with a JSON Schema affecting com.apple.driver.AppleHIDMouse.plist
So far, I've had no success. Can someone with some experience take a look at the schema and configuration profile and let me know if I'm making any simple mistakes?
JSON Schema:
{
"title": "Enable Right-Click as Secondary Click",
"type": "object",
"properties": {
"Button2": {
"type": "integer",
"title": "Secondary Click Button",
"description": "Set the value to 2 to enable the right-click as a secondary click."
}
}
}
Plist Preview:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Button2</key>
<integer>2</integer>
</dict>
</plist>
In the configuration profile I have the Domain set to:
Distribution Level: Computer Level
I have confirmed that it is scoped correctly and delivered to the target test computers.
Thanks for any insights!
