Category filter
Configuration profile to customize Dock settings on Mac
As an IT admin, you might want to manage Dock settings on Mac computers in different ways. The settings may vary from configuring a consistent position of the Dock across all devices within the organization to customizing how an app window should appear or the effects of an app window when the user minimizes them. The configuration profile described in this document will help you set up various dock settings for a Mac. The configuration profile can be deployed using Hexnode’s Deploy Custom Configuration feature.
Managing Dock settings on Mac
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
<?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>PayloadContent</key> <array> <dict> <key>PayloadDisplayName</key> <string>Dock</string> <key>PayloadIdentifier</key> <string>com.apple.dock.0DF6043F-FA30-4C0F-A206-0FD9296A8D62</string> <key>PayloadType</key> <string>com.apple.dock</string> <key>PayloadUUID</key> <string>0DF6043F-FA30-4C0F-A206-0FD9296A8D62</string> <key>PayloadVersion</key> <integer>1</integer> <key>autohide</key> <true/> <key>launchanim</key> <false/> <key>launchanim-immutable</key> <true/> <key>magnify-immutable</key> <true/> <key>magsize-immutable</key> <true/> <key>minimize-to-application</key> <true/> <key>orientation</key> <string>bottom</string> <key>position-immutable</key> <true/> </dict> </array> <key>PayloadDisplayName</key> <string>Manage Dock Settings</string> <key>PayloadIdentifier</key> <string>0CDA0946-ECD5-4136-9505-B31064C0C478</string> <key>PayloadScope</key> <string>System</string> <key>PayloadType</key> <string>Configuration</string> <key>PayloadUUID</key> <string>B3557435-9388-4323-B38A-0D81CC12C5D1</string> <key>PayloadVersion</key> <integer>1</integer> <key>TargetDeviceType</key> <integer>5</integer> </dict> </plist> |
The keys mentioned in this profile are explained in the table below. You can use them to customize various Dock settings on Mac.
Keys | Explanations |
---|---|
autohide | This key specifies whether the Dock should automatically hide when it is not in use. It can have either of the two values:
<true/>: Indicates that the Dock is set to automatically hide when not in use. <false/>: Indicates that the Dock is not set to automatically hide and will always remain visible. |
launchanim | This key determines whether launch animations for applications are enabled or disabled. Genie Effect is chosen by default.
<true/>: Indicates that the launch animations are turned on. This allows applications to open with visual effects. <false/>: Indicates that the launch animations are turned off. This allows applications to open without visual effects. |
launchanim-immutable |
This key locks the Animate opening applications setting.
<true/>: Indicates that the Animate opening applications setting is immutable and cannot be changed by the user. <false/>: Indicates that the Animate opening applications setting is mutable, allowing the user to change it if desired. |
magnify-immutable | These key locks the magnification setting.
<true/>: Indicates that the magnification setting is immutable and cannot be changed by the user. <false/>: Indicates that the magnification setting is mutable, allowing the user to change if desired. |
magsize-immutable | This key is used to lock the magnification slider.
<true/>: Indicates that the magnification slider is immutable, preventing users from changing this setting. <false/>:Indicates that the magnification slider is mutable, allowing users to adjust this setting if desired. |
minimize-to-application | This key is used to specify whether windows are minimized to the application icon in the Dock or appear as individual icons when minimized. |
orientation |
This key specifies the orientation of the Dock, determining where it is positioned on the screen.
<string>bottom</string>: Indicates that the Dock is positioned at the bottom of the screen. <string>left</string>: Indicates that the Dock is positioned on the left side of the screen. <string>right</string>: Indicates that the Dock is positioned on the right side of the screen. <string>top</string>: Indicates that the Dock is positioned at the top of the screen. |
position-immutable |
This key is used to specify whether the position of the Dock setting is immutable.
<true/>: Indicates that the position of the Dock setting is immutable, preventing users from changing its position. <false/>: Indicates that the position of the Dock setting is mutable, allowing users to adjust its position if desired. |
What happens on the device end?
The Dock settings on Mac will change based on the configurations specified in the profile.