├── .gitignore ├── Readme.md ├── Resources ├── LoginLog.app │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── LoginLog │ │ ├── PkgInfo │ │ ├── Resources │ │ ├── LLAppDelegate.py │ │ ├── LLLogWindowController.py │ │ ├── LoginLog.icns │ │ ├── en.lproj │ │ │ ├── Credits.rtf │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.nib │ │ └── main.py │ │ └── _CodeSignature │ │ └── CodeResources ├── com.grahamgilbert.first-boot-pkg.plist ├── first-boot ├── se.gu.it.LoginLog.plist └── se.gu.it.LoginLog.user.plist └── first-boot-pkg /.gitignore: -------------------------------------------------------------------------------- 1 | first-boot.pkg 2 | test.plist 3 | *.pyc 4 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grahamgilbert/first-boot-pkg/HEAD/Readme.md -------------------------------------------------------------------------------- /Resources/LoginLog.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grahamgilbert/first-boot-pkg/HEAD/Resources/LoginLog.app/Contents/Info.plist -------------------------------------------------------------------------------- /Resources/LoginLog.app/Contents/MacOS/LoginLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grahamgilbert/first-boot-pkg/HEAD/Resources/LoginLog.app/Contents/MacOS/LoginLog -------------------------------------------------------------------------------- /Resources/LoginLog.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Resources/LoginLog.app/Contents/Resources/LLAppDelegate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grahamgilbert/first-boot-pkg/HEAD/Resources/LoginLog.app/Contents/Resources/LLAppDelegate.py -------------------------------------------------------------------------------- /Resources/LoginLog.app/Contents/Resources/LLLogWindowController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grahamgilbert/first-boot-pkg/HEAD/Resources/LoginLog.app/Contents/Resources/LLLogWindowController.py -------------------------------------------------------------------------------- /Resources/LoginLog.app/Contents/Resources/LoginLog.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grahamgilbert/first-boot-pkg/HEAD/Resources/LoginLog.app/Contents/Resources/LoginLog.icns -------------------------------------------------------------------------------- /Resources/LoginLog.app/Contents/Resources/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grahamgilbert/first-boot-pkg/HEAD/Resources/LoginLog.app/Contents/Resources/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /Resources/LoginLog.app/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grahamgilbert/first-boot-pkg/HEAD/Resources/LoginLog.app/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/LoginLog.app/Contents/Resources/en.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grahamgilbert/first-boot-pkg/HEAD/Resources/LoginLog.app/Contents/Resources/en.lproj/MainMenu.nib -------------------------------------------------------------------------------- /Resources/LoginLog.app/Contents/Resources/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grahamgilbert/first-boot-pkg/HEAD/Resources/LoginLog.app/Contents/Resources/main.py -------------------------------------------------------------------------------- /Resources/LoginLog.app/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grahamgilbert/first-boot-pkg/HEAD/Resources/LoginLog.app/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Resources/com.grahamgilbert.first-boot-pkg.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grahamgilbert/first-boot-pkg/HEAD/Resources/com.grahamgilbert.first-boot-pkg.plist -------------------------------------------------------------------------------- /Resources/first-boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grahamgilbert/first-boot-pkg/HEAD/Resources/first-boot -------------------------------------------------------------------------------- /Resources/se.gu.it.LoginLog.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grahamgilbert/first-boot-pkg/HEAD/Resources/se.gu.it.LoginLog.plist -------------------------------------------------------------------------------- /Resources/se.gu.it.LoginLog.user.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grahamgilbert/first-boot-pkg/HEAD/Resources/se.gu.it.LoginLog.user.plist -------------------------------------------------------------------------------- /first-boot-pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grahamgilbert/first-boot-pkg/HEAD/first-boot-pkg --------------------------------------------------------------------------------