├── .github └── FUNDING.yml ├── Makefile ├── control ├── layout └── Library │ └── Application Support │ └── aptFix │ └── Base.lproj │ └── aptFix.strings ├── license.md ├── readMe.md └── source ├── 420.h ├── 420.m ├── Makefile ├── ent.plist └── main.m /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Randy-420/aptFix/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Randy-420/aptFix/HEAD/Makefile -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Randy-420/aptFix/HEAD/control -------------------------------------------------------------------------------- /layout/Library/Application Support/aptFix/Base.lproj/aptFix.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Randy-420/aptFix/HEAD/layout/Library/Application Support/aptFix/Base.lproj/aptFix.strings -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Randy-420/aptFix/HEAD/license.md -------------------------------------------------------------------------------- /readMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Randy-420/aptFix/HEAD/readMe.md -------------------------------------------------------------------------------- /source/420.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Randy-420/aptFix/HEAD/source/420.h -------------------------------------------------------------------------------- /source/420.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Randy-420/aptFix/HEAD/source/420.m -------------------------------------------------------------------------------- /source/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Randy-420/aptFix/HEAD/source/Makefile -------------------------------------------------------------------------------- /source/ent.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Randy-420/aptFix/HEAD/source/ent.plist -------------------------------------------------------------------------------- /source/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Randy-420/aptFix/HEAD/source/main.m --------------------------------------------------------------------------------