Skip to content

Instantly share code, notes, and snippets.

@haydio
Created October 30, 2014 00:28
Show Gist options
  • Save haydio/38ac7a9743ceb0b0a3b7 to your computer and use it in GitHub Desktop.
Save haydio/38ac7a9743ceb0b0a3b7 to your computer and use it in GitHub Desktop.
Sets the default paper size for OS X machines at image time
#!/bin/sh
for USER_TEMPLATE in "/System/Library/User Template"/*
do
defaults write "${USER_TEMPLATE}"/Library/Preferences/com.apple.print.PrintingPrefs DefaultPaperID iso-a4
done
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment