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 | |
# | |
# This shell snippet will pre-set CrashReporter's setting for diagnostics submissions | |
# to Apple and app developers. This seems to also have the side effect of not showing | |
# the additional "Diagnostics & Usage" dialog at the end of the Setup Assistant, | |
# because the settings have already been configured in the | |
# DiagnosticMessagesHistory.plist file. | |
# | |
# Modify the SUBMIT_TO_* variables below to either YES or NO to configure the setting. | |
# They are currently set to the defaults suggested by Apple when the dialog is shown |
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
#!/usr/bin/python | |
import os | |
import subprocess | |
import glob | |
image_format = "png" | |
# Get the paths to all icon files in the CoreTypes bundle | |
coretypes_path = '/System/Library/CoreServices/CoreTypes.bundle/Contents/Resources' |
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
# http://developer.apple.com/mac/library/documentation/DeveloperTools/Conceptual/SoftwareDistribution/Install_Operations/Install_Operations.html#//apple_ref/doc/uid/10000145i-CH14-SW1 | |
# Arguments | |
# $1: Full path to the installation package the Installer application is processing. | |
# $2: Full path to the installation destination. | |
# $3: Installation volume (or mountpoint) to receive the payload. | |
# $4: The root directory for the system. | |
# Environment variables | |
# $SCRIPT_NAME: Filename of the operation executable. | |
# $PACKAGE_PATH: Full path to the installation package. Same as $1. | |
# $INSTALLER_TEMP: Scratch directory used by Installer to place its temporary work files. Install operations may use this area for their temporary work, too, but must not overwrite any Installer files. The Installer application erases this directory at the end of the install. |
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
/usr/bin/arch | |
/usr/bin/asctl | |
/usr/bin/awk | |
/usr/bin/banner | |
/usr/bin/bsdtar | |
/usr/bin/c_rehash | |
/usr/bin/caffeinate | |
/usr/bin/chflags | |
/usr/bin/cksum | |
/usr/bin/codesign |
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
<?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"> | |
<array> | |
<dict> | |
<key>attributeSetting</key> | |
<integer>1</integer> | |
<key>choiceAttribute</key> | |
<string>selected</string> | |
<key>choiceIdentifier</key> |
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
<?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>installs</key> | |
<array> | |
<dict> | |
<key>CFBundleShortVersionString</key> | |
<string>14.3.8</string> | |
<key>CFBundleVersion</key> |
NewerOlder