├── .gitignore ├── LICENSE ├── Makefile ├── Prefs ├── Info.plist ├── Makefile ├── NSTask.h ├── Preferences.h ├── Preferences.m ├── Resources │ ├── Prefs.plist │ ├── base.lproj │ │ └── Prefs.strings │ ├── header.png │ ├── icon.png │ ├── icon512.png │ ├── icon512_rounded.png │ ├── icon512_transparent.png │ ├── icon@2x.png │ ├── icon_transparent.png │ ├── icon_transparent@2x.png │ └── otherTweaks │ │ ├── appaze@2x.png │ │ ├── quickPrefs@2x.png │ │ ├── sleepizy@2x.png │ │ ├── switchShades@2x.png │ │ └── videoSwipes@2x.png └── entry.plist ├── RenameProject.sh ├── Tweak ├── Makefile ├── PanCake.plist ├── Tweak.h └── Tweak.xm ├── control └── showModalOnError.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthoPakPak/PanCake/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthoPakPak/PanCake/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthoPakPak/PanCake/HEAD/Makefile -------------------------------------------------------------------------------- /Prefs/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthoPakPak/PanCake/HEAD/Prefs/Info.plist -------------------------------------------------------------------------------- /Prefs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthoPakPak/PanCake/HEAD/Prefs/Makefile -------------------------------------------------------------------------------- /Prefs/NSTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthoPakPak/PanCake/HEAD/Prefs/NSTask.h -------------------------------------------------------------------------------- /Prefs/Preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthoPakPak/PanCake/HEAD/Prefs/Preferences.h -------------------------------------------------------------------------------- /Prefs/Preferences.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthoPakPak/PanCake/HEAD/Prefs/Preferences.m -------------------------------------------------------------------------------- /Prefs/Resources/Prefs.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthoPakPak/PanCake/HEAD/Prefs/Resources/Prefs.plist -------------------------------------------------------------------------------- /Prefs/Resources/base.lproj/Prefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthoPakPak/PanCake/HEAD/Prefs/Resources/base.lproj/Prefs.strings -------------------------------------------------------------------------------- /Prefs/Resources/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthoPakPak/PanCake/HEAD/Prefs/Resources/header.png -------------------------------------------------------------------------------- /Prefs/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthoPakPak/PanCake/HEAD/Prefs/Resources/icon.png -------------------------------------------------------------------------------- /Prefs/Resources/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthoPakPak/PanCake/HEAD/Prefs/Resources/icon512.png -------------------------------------------------------------------------------- /Prefs/Resources/icon512_rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthoPakPak/PanCake/HEAD/Prefs/Resources/icon512_rounded.png -------------------------------------------------------------------------------- /Prefs/Resources/icon512_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthoPakPak/PanCake/HEAD/Prefs/Resources/icon512_transparent.png -------------------------------------------------------------------------------- /Prefs/Resources/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthoPakPak/PanCake/HEAD/Prefs/Resources/icon@2x.png -------------------------------------------------------------------------------- /Prefs/Resources/icon_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthoPakPak/PanCake/HEAD/Prefs/Resources/icon_transparent.png -------------------------------------------------------------------------------- /Prefs/Resources/icon_transparent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthoPakPak/PanCake/HEAD/Prefs/Resources/icon_transparent@2x.png -------------------------------------------------------------------------------- /Prefs/Resources/otherTweaks/appaze@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthoPakPak/PanCake/HEAD/Prefs/Resources/otherTweaks/appaze@2x.png -------------------------------------------------------------------------------- /Prefs/Resources/otherTweaks/quickPrefs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthoPakPak/PanCake/HEAD/Prefs/Resources/otherTweaks/quickPrefs@2x.png -------------------------------------------------------------------------------- /Prefs/Resources/otherTweaks/sleepizy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthoPakPak/PanCake/HEAD/Prefs/Resources/otherTweaks/sleepizy@2x.png -------------------------------------------------------------------------------- /Prefs/Resources/otherTweaks/switchShades@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthoPakPak/PanCake/HEAD/Prefs/Resources/otherTweaks/switchShades@2x.png -------------------------------------------------------------------------------- /Prefs/Resources/otherTweaks/videoSwipes@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthoPakPak/PanCake/HEAD/Prefs/Resources/otherTweaks/videoSwipes@2x.png -------------------------------------------------------------------------------- /Prefs/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthoPakPak/PanCake/HEAD/Prefs/entry.plist -------------------------------------------------------------------------------- /RenameProject.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthoPakPak/PanCake/HEAD/RenameProject.sh -------------------------------------------------------------------------------- /Tweak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthoPakPak/PanCake/HEAD/Tweak/Makefile -------------------------------------------------------------------------------- /Tweak/PanCake.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthoPakPak/PanCake/HEAD/Tweak/PanCake.plist -------------------------------------------------------------------------------- /Tweak/Tweak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthoPakPak/PanCake/HEAD/Tweak/Tweak.h -------------------------------------------------------------------------------- /Tweak/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthoPakPak/PanCake/HEAD/Tweak/Tweak.xm -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthoPakPak/PanCake/HEAD/control -------------------------------------------------------------------------------- /showModalOnError.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthoPakPak/PanCake/HEAD/showModalOnError.sh --------------------------------------------------------------------------------