Created
October 30, 2014 00:28
-
-
Save haydio/38ac7a9743ceb0b0a3b7 to your computer and use it in GitHub Desktop.
Sets the default paper size for OS X machines at image time
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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