├── .gitignore ├── BuildmacOSInstallApp.command ├── LICENSE ├── MakeInstall.bat ├── MakeInstall.py ├── Readme.md ├── Scripts ├── BOOTICEx64.exe ├── __init__.py ├── disk.py ├── diskwin.py ├── downloader.py ├── plist.py ├── run.py └── utils.py ├── gibMacOS.bat └── gibMacOS.command /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeonme/gibMacOS/HEAD/.gitignore -------------------------------------------------------------------------------- /BuildmacOSInstallApp.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeonme/gibMacOS/HEAD/BuildmacOSInstallApp.command -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeonme/gibMacOS/HEAD/LICENSE -------------------------------------------------------------------------------- /MakeInstall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeonme/gibMacOS/HEAD/MakeInstall.bat -------------------------------------------------------------------------------- /MakeInstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeonme/gibMacOS/HEAD/MakeInstall.py -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeonme/gibMacOS/HEAD/Readme.md -------------------------------------------------------------------------------- /Scripts/BOOTICEx64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeonme/gibMacOS/HEAD/Scripts/BOOTICEx64.exe -------------------------------------------------------------------------------- /Scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeonme/gibMacOS/HEAD/Scripts/__init__.py -------------------------------------------------------------------------------- /Scripts/disk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeonme/gibMacOS/HEAD/Scripts/disk.py -------------------------------------------------------------------------------- /Scripts/diskwin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeonme/gibMacOS/HEAD/Scripts/diskwin.py -------------------------------------------------------------------------------- /Scripts/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeonme/gibMacOS/HEAD/Scripts/downloader.py -------------------------------------------------------------------------------- /Scripts/plist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeonme/gibMacOS/HEAD/Scripts/plist.py -------------------------------------------------------------------------------- /Scripts/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeonme/gibMacOS/HEAD/Scripts/run.py -------------------------------------------------------------------------------- /Scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeonme/gibMacOS/HEAD/Scripts/utils.py -------------------------------------------------------------------------------- /gibMacOS.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeonme/gibMacOS/HEAD/gibMacOS.bat -------------------------------------------------------------------------------- /gibMacOS.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeonme/gibMacOS/HEAD/gibMacOS.command --------------------------------------------------------------------------------