├── .gitignore ├── ChoicyLoader.m ├── LICENSE.md ├── Makefile ├── README.md ├── control ├── postinst ├── Makefile └── main.m ├── postrm ├── Makefile └── main.m └── triggers /.gitignore: -------------------------------------------------------------------------------- 1 | .theos/ 2 | .DS_Store 3 | packages/ -------------------------------------------------------------------------------- /ChoicyLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/ChoicyLoader/HEAD/ChoicyLoader.m -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/ChoicyLoader/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/ChoicyLoader/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ChoicyLoader 2 | -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/ChoicyLoader/HEAD/control -------------------------------------------------------------------------------- /postinst/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/ChoicyLoader/HEAD/postinst/Makefile -------------------------------------------------------------------------------- /postinst/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/ChoicyLoader/HEAD/postinst/main.m -------------------------------------------------------------------------------- /postrm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/ChoicyLoader/HEAD/postrm/Makefile -------------------------------------------------------------------------------- /postrm/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/ChoicyLoader/HEAD/postrm/main.m -------------------------------------------------------------------------------- /triggers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/ChoicyLoader/HEAD/triggers --------------------------------------------------------------------------------