├── .gitignore ├── CDTContextHostProvider.h ├── CDTContextHostProvider.mm ├── Interfaces.h ├── Makefile ├── POPCloseBox.h ├── POPCloseBox.mm ├── POPCloseButton.h ├── POPCloseButton.mm ├── POPContentView.h ├── POPContentView.mm ├── Popcorn.plist ├── README.md ├── Tweak.xm ├── control ├── screen1.PNG ├── screen2.PNG ├── screen3.PNG └── theos /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Popcorn/HEAD/.gitignore -------------------------------------------------------------------------------- /CDTContextHostProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Popcorn/HEAD/CDTContextHostProvider.h -------------------------------------------------------------------------------- /CDTContextHostProvider.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Popcorn/HEAD/CDTContextHostProvider.mm -------------------------------------------------------------------------------- /Interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Popcorn/HEAD/Interfaces.h -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Popcorn/HEAD/Makefile -------------------------------------------------------------------------------- /POPCloseBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Popcorn/HEAD/POPCloseBox.h -------------------------------------------------------------------------------- /POPCloseBox.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Popcorn/HEAD/POPCloseBox.mm -------------------------------------------------------------------------------- /POPCloseButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Popcorn/HEAD/POPCloseButton.h -------------------------------------------------------------------------------- /POPCloseButton.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Popcorn/HEAD/POPCloseButton.mm -------------------------------------------------------------------------------- /POPContentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Popcorn/HEAD/POPContentView.h -------------------------------------------------------------------------------- /POPContentView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Popcorn/HEAD/POPContentView.mm -------------------------------------------------------------------------------- /Popcorn.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Popcorn/HEAD/Popcorn.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Popcorn/HEAD/README.md -------------------------------------------------------------------------------- /Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Popcorn/HEAD/Tweak.xm -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Popcorn/HEAD/control -------------------------------------------------------------------------------- /screen1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Popcorn/HEAD/screen1.PNG -------------------------------------------------------------------------------- /screen2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Popcorn/HEAD/screen2.PNG -------------------------------------------------------------------------------- /screen3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Popcorn/HEAD/screen3.PNG -------------------------------------------------------------------------------- /theos: -------------------------------------------------------------------------------- 1 | /opt/theos --------------------------------------------------------------------------------