Skip to content

Instantly share code, notes, and snippets.

@pirkla
Last active August 6, 2019 01:54
Show Gist options
  • Save pirkla/1ae0d478dd1674a6cdf79cf4fee22c6c to your computer and use it in GitHub Desktop.
Save pirkla/1ae0d478dd1674a6cdf79cf4fee22c6c to your computer and use it in GitHub Desktop.
Create a custom plist and convert it to xml
# Create the plist and place it on the desktop
defaults write ~/Desktop/com.domain.name key value
# additional key value pairs can be added as follows
defaults write ~/Desktop/com.domain.name key2 value2
# Convert the plist to xml1 formatting for easy viewing and editing
plutil -convert xml1 ~/Desktop/com.domain.name.plist
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment