├── .gitignore ├── LICENSE ├── README.md ├── application_source_components_and_graphics ├── building_application │ └── building_application.txt ├── building_installer │ └── building_installer.txt ├── code_signing_app │ └── code_signing_app.txt ├── firstboot_scripts │ ├── firstbootpackageinstall_noswupdates.sh │ └── firstbootpackageinstall_yesswupdates.sh ├── icon │ ├── Source_image │ │ ├── First_Boot_Package_Install_Generator_Icon.png │ │ └── First_Boot_Package_Install_Generator_Icon.png.zip │ ├── application_icons.zip │ ├── application_iconset.zip │ └── folder_icon.zip ├── pre-built_components │ ├── Notes on creating installer_build_components.txt │ ├── applesilicon_xmlstarlet.tgz │ ├── installer_build_components.tgz │ └── intel_xmlstarlet.tgz └── workflow_and_script │ ├── AppleScript │ ├── Application_Path_Locator.scpt │ ├── Application_Path_Locator.zip │ ├── Application_window_focus.scpt │ ├── Application_window_focus.zip │ ├── Display_Folder_Selection_Dialog_Message.scpt │ ├── Display_Folder_Selection_Dialog_Message.zip │ ├── First_Boot_Package_Install_Generator.scpt │ └── First_Boot_Package_Install_Generator.zip │ ├── Automator │ ├── First Boot Package Install Generator.workflow │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── QuickLook │ │ │ └── Preview.png │ │ │ └── document.wflow │ └── First_Boot_Package_Install_Generator_Automator_Workflow.zip │ └── Shell_Script │ └── prebuilt_component_parts_copy_script.txt └── installer └── First_Boot_Package_Install_Generator.zip /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | installer/.DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/First_Boot_Package_Install_Generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/First_Boot_Package_Install_Generator/HEAD/README.md -------------------------------------------------------------------------------- /application_source_components_and_graphics/building_application/building_application.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/First_Boot_Package_Install_Generator/HEAD/application_source_components_and_graphics/building_application/building_application.txt -------------------------------------------------------------------------------- /application_source_components_and_graphics/building_installer/building_installer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/First_Boot_Package_Install_Generator/HEAD/application_source_components_and_graphics/building_installer/building_installer.txt -------------------------------------------------------------------------------- /application_source_components_and_graphics/code_signing_app/code_signing_app.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/First_Boot_Package_Install_Generator/HEAD/application_source_components_and_graphics/code_signing_app/code_signing_app.txt -------------------------------------------------------------------------------- /application_source_components_and_graphics/firstboot_scripts/firstbootpackageinstall_noswupdates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/First_Boot_Package_Install_Generator/HEAD/application_source_components_and_graphics/firstboot_scripts/firstbootpackageinstall_noswupdates.sh -------------------------------------------------------------------------------- /application_source_components_and_graphics/firstboot_scripts/firstbootpackageinstall_yesswupdates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/First_Boot_Package_Install_Generator/HEAD/application_source_components_and_graphics/firstboot_scripts/firstbootpackageinstall_yesswupdates.sh -------------------------------------------------------------------------------- /application_source_components_and_graphics/icon/Source_image/First_Boot_Package_Install_Generator_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/First_Boot_Package_Install_Generator/HEAD/application_source_components_and_graphics/icon/Source_image/First_Boot_Package_Install_Generator_Icon.png -------------------------------------------------------------------------------- /application_source_components_and_graphics/icon/Source_image/First_Boot_Package_Install_Generator_Icon.png.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/First_Boot_Package_Install_Generator/HEAD/application_source_components_and_graphics/icon/Source_image/First_Boot_Package_Install_Generator_Icon.png.zip -------------------------------------------------------------------------------- /application_source_components_and_graphics/icon/application_icons.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/First_Boot_Package_Install_Generator/HEAD/application_source_components_and_graphics/icon/application_icons.zip -------------------------------------------------------------------------------- /application_source_components_and_graphics/icon/application_iconset.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/First_Boot_Package_Install_Generator/HEAD/application_source_components_and_graphics/icon/application_iconset.zip -------------------------------------------------------------------------------- /application_source_components_and_graphics/icon/folder_icon.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/First_Boot_Package_Install_Generator/HEAD/application_source_components_and_graphics/icon/folder_icon.zip -------------------------------------------------------------------------------- /application_source_components_and_graphics/pre-built_components/Notes on creating installer_build_components.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/First_Boot_Package_Install_Generator/HEAD/application_source_components_and_graphics/pre-built_components/Notes on creating installer_build_components.txt -------------------------------------------------------------------------------- /application_source_components_and_graphics/pre-built_components/applesilicon_xmlstarlet.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/First_Boot_Package_Install_Generator/HEAD/application_source_components_and_graphics/pre-built_components/applesilicon_xmlstarlet.tgz -------------------------------------------------------------------------------- /application_source_components_and_graphics/pre-built_components/installer_build_components.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/First_Boot_Package_Install_Generator/HEAD/application_source_components_and_graphics/pre-built_components/installer_build_components.tgz -------------------------------------------------------------------------------- /application_source_components_and_graphics/pre-built_components/intel_xmlstarlet.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/First_Boot_Package_Install_Generator/HEAD/application_source_components_and_graphics/pre-built_components/intel_xmlstarlet.tgz -------------------------------------------------------------------------------- /application_source_components_and_graphics/workflow_and_script/AppleScript/Application_Path_Locator.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/First_Boot_Package_Install_Generator/HEAD/application_source_components_and_graphics/workflow_and_script/AppleScript/Application_Path_Locator.scpt -------------------------------------------------------------------------------- /application_source_components_and_graphics/workflow_and_script/AppleScript/Application_Path_Locator.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/First_Boot_Package_Install_Generator/HEAD/application_source_components_and_graphics/workflow_and_script/AppleScript/Application_Path_Locator.zip -------------------------------------------------------------------------------- /application_source_components_and_graphics/workflow_and_script/AppleScript/Application_window_focus.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/First_Boot_Package_Install_Generator/HEAD/application_source_components_and_graphics/workflow_and_script/AppleScript/Application_window_focus.scpt -------------------------------------------------------------------------------- /application_source_components_and_graphics/workflow_and_script/AppleScript/Application_window_focus.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/First_Boot_Package_Install_Generator/HEAD/application_source_components_and_graphics/workflow_and_script/AppleScript/Application_window_focus.zip -------------------------------------------------------------------------------- /application_source_components_and_graphics/workflow_and_script/AppleScript/Display_Folder_Selection_Dialog_Message.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/First_Boot_Package_Install_Generator/HEAD/application_source_components_and_graphics/workflow_and_script/AppleScript/Display_Folder_Selection_Dialog_Message.scpt -------------------------------------------------------------------------------- /application_source_components_and_graphics/workflow_and_script/AppleScript/Display_Folder_Selection_Dialog_Message.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/First_Boot_Package_Install_Generator/HEAD/application_source_components_and_graphics/workflow_and_script/AppleScript/Display_Folder_Selection_Dialog_Message.zip -------------------------------------------------------------------------------- /application_source_components_and_graphics/workflow_and_script/AppleScript/First_Boot_Package_Install_Generator.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/First_Boot_Package_Install_Generator/HEAD/application_source_components_and_graphics/workflow_and_script/AppleScript/First_Boot_Package_Install_Generator.scpt -------------------------------------------------------------------------------- /application_source_components_and_graphics/workflow_and_script/AppleScript/First_Boot_Package_Install_Generator.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/First_Boot_Package_Install_Generator/HEAD/application_source_components_and_graphics/workflow_and_script/AppleScript/First_Boot_Package_Install_Generator.zip -------------------------------------------------------------------------------- /application_source_components_and_graphics/workflow_and_script/Automator/First Boot Package Install Generator.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/First_Boot_Package_Install_Generator/HEAD/application_source_components_and_graphics/workflow_and_script/Automator/First Boot Package Install Generator.workflow/Contents/Info.plist -------------------------------------------------------------------------------- /application_source_components_and_graphics/workflow_and_script/Automator/First Boot Package Install Generator.workflow/Contents/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/First_Boot_Package_Install_Generator/HEAD/application_source_components_and_graphics/workflow_and_script/Automator/First Boot Package Install Generator.workflow/Contents/QuickLook/Preview.png -------------------------------------------------------------------------------- /application_source_components_and_graphics/workflow_and_script/Automator/First Boot Package Install Generator.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/First_Boot_Package_Install_Generator/HEAD/application_source_components_and_graphics/workflow_and_script/Automator/First Boot Package Install Generator.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /application_source_components_and_graphics/workflow_and_script/Automator/First_Boot_Package_Install_Generator_Automator_Workflow.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/First_Boot_Package_Install_Generator/HEAD/application_source_components_and_graphics/workflow_and_script/Automator/First_Boot_Package_Install_Generator_Automator_Workflow.zip -------------------------------------------------------------------------------- /application_source_components_and_graphics/workflow_and_script/Shell_Script/prebuilt_component_parts_copy_script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/First_Boot_Package_Install_Generator/HEAD/application_source_components_and_graphics/workflow_and_script/Shell_Script/prebuilt_component_parts_copy_script.txt -------------------------------------------------------------------------------- /installer/First_Boot_Package_Install_Generator.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/First_Boot_Package_Install_Generator/HEAD/installer/First_Boot_Package_Install_Generator.zip --------------------------------------------------------------------------------