├── Archive ├── .DS_Store ├── .theos │ ├── build_session │ └── obj │ │ └── debug │ │ ├── .stamp │ │ └── armv7 │ │ └── Tweak.xm.ff6c2948.o ├── Makefile ├── Motus.plist ├── Tweak.xm ├── control └── prefs │ ├── .DS_Store │ ├── Makefile │ ├── MotusPrefsRootListController.h │ ├── MotusPrefsRootListController.m │ ├── Resources │ ├── .DS_Store │ ├── Info.plist │ ├── Root.plist │ ├── discord.png │ ├── discord@2x.png │ ├── twitter.png │ └── twitter@2x.png │ └── entry.plist ├── CIL ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── ConfirmInstaLike.dylib │ │ │ └── ConfirmInstaLike.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── ConfirmInstaLike.dylib │ │ │ ├── arm64 │ │ │ ├── ConfirmInstaLike.dylib │ │ │ └── Tweak.xm.83ea542e.o │ │ │ └── armv7 │ │ │ ├── ConfirmInstaLike.dylib │ │ │ └── Tweak.xm.aa9845c0.o │ └── packages │ │ ├── com.tonyk7.confirminstalike-0.0.2 │ │ └── com.tonyk7.confirminstalike-0.0.3 ├── CIL.zip ├── Makefile ├── Tweak.xm ├── confirmInstaLike.plist ├── control └── headers.h ├── EzAprilFools ├── .theos │ ├── build_session │ └── obj │ │ └── debug │ │ ├── .stamp │ │ └── Respring.bundle │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ └── Info.plist ├── EzRespringModule.h ├── EzRespringModule.m ├── Frameworks │ └── ControlCenterUIKit.tbd ├── Makefile ├── Resources │ ├── Icon.png │ ├── Icon@2x.png │ └── Info.plist ├── control ├── headers │ └── ControlCenterUIKit │ │ ├── CCUICAPackageDescription.h │ │ ├── CCUIContentModule-Protocol.h │ │ ├── CCUIContentModuleContentViewController-Protocol.h │ │ └── CCUIToggleModule.h └── postinst ├── EzApt ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── System │ │ │ └── Library │ │ │ └── ControlCenter │ │ │ └── Bundles │ │ │ └── EzAPT.bundle │ │ │ ├── EzAPT │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── EzAPT.bundle │ │ │ ├── EzAPT │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ │ ├── arm64 │ │ │ ├── EzAPT.bundle │ │ │ │ └── EzAPT │ │ │ └── EzAPTModule.m.9f946cdf.o │ │ │ └── armv7 │ │ │ ├── EzAPT.bundle │ │ │ └── EzAPT │ │ │ └── EzAPTModule.m.16534120.o │ └── packages │ │ └── com.m4cs.aptget-0.0.1 ├── EzAPTModule.h ├── EzAPTModule.m ├── EzApt.zip ├── Frameworks │ └── ControlCenterUIKit.tbd ├── Makefile ├── Resources │ ├── Icon.png │ ├── Icon@2x.png │ └── Info.plist ├── control ├── headers │ └── ControlCenterUIKit │ │ ├── CCUICAPackageDescription.h │ │ ├── CCUIContentModule-Protocol.h │ │ ├── CCUIContentModuleContentViewController-Protocol.h │ │ └── CCUIToggleModule.h ├── packages │ ├── com.m4cs.aptget_0.0.1-1+debug_iphoneos-arm.deb │ └── com.m4cs.aptget_0.0.1-2+debug_iphoneos-arm.deb └── postinst ├── EzAutoBrightness ├── .gitattributes ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── ControlCenter │ │ │ └── Bundles │ │ │ └── ezautobrightness.bundle │ │ │ ├── EzAutoBrightness │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ ├── build_session │ ├── fakeroot │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── EzAutoBrightness.bundle │ │ │ ├── EzAutoBrightness │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ │ └── arm64 │ │ │ ├── EzAutoBrightness.bundle │ │ │ └── EzAutoBrightness │ │ │ └── EzAutoBrightness.m.74847115.o │ └── packages │ │ ├── com.simalary.control-center.ezautobrightness-1.0.0 │ │ └── com.simalary.controlcenter.ezautobrightness-1.0.0 ├── EzAutoBrightness.h ├── EzAutoBrightness.m ├── Frameworks │ ├── ControlCenterUIKit.tbd │ └── SAObjects.tbd ├── Makefile ├── Resources │ ├── Icon.png │ ├── Icon@2x.png │ └── Info.plist ├── control └── headers │ └── ControlCenterUIKit │ ├── CCUICAPackageDescription.h │ ├── CCUIContentModule-Protocol.h │ ├── CCUIContentModuleContentViewController-Protocol.h │ └── CCUIToggleModule.h ├── EzCache ├── .gitattributes ├── .theos │ ├── build_session │ └── obj │ │ └── debug │ │ ├── .stamp │ │ └── EzUICache.bundle │ │ ├── Icon.png │ │ ├── Icon2x.png │ │ ├── Info.plist │ │ └── uicache ├── EzUICacheModule.h ├── EzUICacheModule.m ├── Frameworks │ └── ControlCenterUIKit.tbd ├── Makefile ├── Resources │ ├── Icon.png │ ├── Icon2x.png │ ├── Info.plist │ └── uicache ├── control └── headers │ └── ControlCenterUIKit │ ├── CCUICAPackageDescription.h │ ├── CCUIContentModule-Protocol.h │ ├── CCUIContentModuleContentViewController-Protocol.h │ └── CCUIToggleModule.h ├── EzChrome ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── ControlCenter │ │ │ └── Bundles │ │ │ └── EzChrome.bundle │ │ │ ├── EzChrome │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── EzChrome.bundle │ │ │ ├── EzChrome │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ │ ├── arm64 │ │ │ ├── EzChrome.bundle │ │ │ │ └── EzChrome │ │ │ └── EzChrome.m.6f74c2e7.o │ │ │ └── armv7 │ │ │ ├── EzChrome.bundle │ │ │ └── EzChrome │ │ │ └── EzChrome.m.14859e12.o │ └── packages │ │ └── com.m4cs.chrome-0.1-beta ├── ControlCenterUIKit │ ├── CCUICAPackageDescription.h │ ├── CCUIContentModule-Protocol.h │ ├── CCUIContentModuleContentViewController-Protocol.h │ └── CCUIToggleModule.h ├── EzChrome.h ├── EzChrome.m ├── EzChrome.plist ├── Frameworks │ └── ControlCenterUIKit.tbd ├── Resources │ ├── Icon.png │ ├── Icon@2x.png │ └── Info.plist ├── control ├── makefile └── packages │ ├── com.m4cs.chrome_0.1-beta-1+debug_iphoneos-arm.deb │ └── com.m4cs.chrome_0.1-beta-1+debug_iphoneos-arm │ ├── Library │ └── ControlCenter │ │ └── Bundles │ │ └── EzChrome.bundle │ │ ├── EzChrome │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ └── Info.plist │ └── data.tar ├── EzCydiaLauncher ├── .theos │ ├── build_session │ └── obj │ │ └── debug │ │ ├── .stamp │ │ ├── EzCydiaOpener.bundle │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ └── Info.plist │ │ ├── arm64 │ │ └── EzCydiaOpener.m.371b773e.o │ │ └── armv7 │ │ └── EzCydiaOpener.m.e9050ccb.o ├── ControlCenterUIKit │ ├── CCUICAPackageDescription.h │ ├── CCUIContentModule-Protocol.h │ ├── CCUIContentModuleContentViewController-Protocol.h │ └── CCUIToggleModule.h ├── EzCydiaOpener.h ├── EzCydiaOpener.m ├── EzCydiaOpener.plist ├── Frameworks │ └── ControlCenterUIKit.tbd ├── Makefile ├── Resources │ ├── Icon.png │ ├── Icon@2x.png │ └── Info.plist └── control ├── EzDiscord ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── ControlCenter │ │ │ └── Bundles │ │ │ └── EzDiscord.bundle │ │ │ ├── EzDiscord │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── EzDiscord.bundle │ │ │ ├── EzDiscord │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ │ ├── arm64 │ │ │ ├── EzDiscord.bundle │ │ │ │ └── EzDiscord │ │ │ └── EzDiscord.m.fc8707f9.o │ │ │ └── armv7 │ │ │ ├── EzDiscord.bundle │ │ │ └── EzDiscord │ │ │ └── EzDiscord.m.b395e83a.o │ └── packages │ │ └── com.m4cs.discord-0.1-beta ├── ControlCenterUIKit │ ├── CCUICAPackageDescription.h │ ├── CCUIContentModule-Protocol.h │ ├── CCUIContentModuleContentViewController-Protocol.h │ └── CCUIToggleModule.h ├── EzDiscord.h ├── EzDiscord.m ├── EzDiscord.plist ├── Frameworks │ └── ControlCenterUIKit.tbd ├── Resources │ ├── Icon.png │ ├── Icon@2x.png │ └── Info.plist ├── control ├── makefile └── packages │ ├── com.m4cs.discord_0.1-beta-1+debug_iphoneos-arm.deb │ ├── com.m4cs.discord_0.1-beta-2+debug_iphoneos-arm.deb │ └── com.m4cs.discord_0.1-beta-2+debug_iphoneos-arm │ ├── Library │ └── ControlCenter │ │ └── Bundles │ │ └── EzDiscord.bundle │ │ ├── EzDiscord │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ └── Info.plist │ └── data.tar ├── EzFacebook ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── ControlCenter │ │ │ └── Bundles │ │ │ └── EzFacebook.bundle │ │ │ ├── EzFacebook │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── EzFacebook.bundle │ │ │ ├── EzFacebook │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ │ ├── arm64 │ │ │ ├── EzFacebook.bundle │ │ │ │ └── EzFacebook │ │ │ └── EzFacebook.m.8a9b331f.o │ │ │ └── armv7 │ │ │ ├── EzFacebook.bundle │ │ │ └── EzFacebook │ │ │ └── EzFacebook.m.3ec7b9c1.o │ └── packages │ │ └── com.m4cs.facebook-0.1-beta ├── ControlCenterUIKit │ ├── CCUICAPackageDescription.h │ ├── CCUIContentModule-Protocol.h │ ├── CCUIContentModuleContentViewController-Protocol.h │ └── CCUIToggleModule.h ├── EzFacebook.h ├── EzFacebook.m ├── EzFacebook.plist ├── Frameworks │ └── ControlCenterUIKit.tbd ├── Resources │ ├── Icon.png │ ├── Icon@2x.png │ └── Info.plist ├── control ├── makefile └── packages │ ├── Library │ └── ControlCenter │ │ └── Bundles │ │ └── EzFacebook.bundle │ │ ├── EzFacebook │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ └── Info.plist │ ├── com.m4cs.facebook_0.1-beta-1+debug_iphoneos-arm.deb │ └── data.tar ├── EzFieldTest ├── .gitattributes ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── ControlCenter │ │ │ └── Bundles │ │ │ └── EzFieldTest.bundle │ │ │ ├── EzFieldTest │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── EzFieldTest.bundle │ │ │ ├── EzFieldTest │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ │ ├── EzMusic.bundle │ │ │ ├── EzMusic │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ │ ├── arm64 │ │ │ ├── EzFieldTest.bundle │ │ │ │ └── EzFieldTest │ │ │ ├── EzFieldTest.m.0d868975.o │ │ │ ├── EzFieldTest.m.b0875508.o │ │ │ └── EzMusic.bundle │ │ │ │ └── EzMusic │ │ │ └── armv7 │ │ │ ├── EzFieldTest.bundle │ │ │ └── EzFieldTest │ │ │ ├── EzFieldTest.m.3e4ee8f3.o │ │ │ ├── EzFieldTest.m.f3ee45aa.o │ │ │ └── EzMusic.bundle │ │ │ └── EzMusic │ └── packages │ │ └── com.m4cs.fieldtest-0.1-beta ├── ControlCenterUIKit │ ├── CCUICAPackageDescription.h │ ├── CCUIContentModule-Protocol.h │ ├── CCUIContentModuleContentViewController-Protocol.h │ └── CCUIToggleModule.h ├── EzFieldTest.h ├── EzFieldTest.m ├── EzFieldTest.plist ├── Frameworks │ └── ControlCenterUIKit.tbd ├── Resources │ ├── Icon.png │ ├── Icon@2x.png │ └── Info.plist ├── control ├── makefile └── packages │ ├── com.m4cs.fieldtest_0.1-beta-1+debug_iphoneos-arm.deb │ ├── com.m4cs.fieldtest_0.1-beta-2+debug_iphoneos-arm.deb │ └── com.m4cs.fieldtest_0.1-beta-3+debug_iphoneos-arm.deb ├── EzFramework ├── .theos │ ├── build_session │ └── obj │ │ └── debug │ │ ├── .stamp │ │ ├── EzFramework.dylib │ │ ├── arm64 │ │ ├── EzFramework.dylib │ │ └── Tweak.xm.07ced171.o │ │ └── armv7 │ │ ├── EzFramework.dylib │ │ └── Tweak.xm.3428c0fe.o ├── EzFramework.plist ├── EzFramework.rar ├── Makefile ├── Tweak.xm └── control ├── EzMessages ├── .gitattributes ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── ControlCenter │ │ │ └── Bundles │ │ │ └── EzMessages.bundle │ │ │ ├── EzMessages │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── EzMessages.bundle │ │ │ ├── EzMessages │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ │ ├── arm64 │ │ │ ├── EzMessages.bundle │ │ │ │ └── EzMessages │ │ │ └── EzMessages.m.c1c9f0b3.o │ │ │ └── armv7 │ │ │ ├── EzMessages.bundle │ │ │ └── EzMessages │ │ │ └── EzMessages.m.236e4bcd.o │ └── packages │ │ └── com.m4cs.messages-0.1-beta ├── ControlCenterUIKit │ ├── CCUICAPackageDescription.h │ ├── CCUIContentModule-Protocol.h │ ├── CCUIContentModuleContentViewController-Protocol.h │ └── CCUIToggleModule.h ├── EzMessages.h ├── EzMessages.m ├── EzMessages.plist ├── Frameworks │ └── ControlCenterUIKit.tbd ├── Resources │ ├── Icon.png │ ├── Icon@2x.png │ └── Info.plist ├── control ├── makefile └── packages │ ├── com.m4cs.messages_0.1-beta-1+debug_iphoneos-arm.deb │ ├── com.m4cs.messages_0.1-beta-2+debug_iphoneos-arm.deb │ ├── com.m4cs.messages_0.1-beta-2+debug_iphoneos-arm │ └── data.tar │ ├── com.m4cs.messages_0.1-beta-3+debug_iphoneos-arm.deb │ └── com.m4cs.messages_0.1-beta-3+debug_iphoneos-arm │ ├── Library │ └── ControlCenter │ │ └── Bundles │ │ └── EzMessages.bundle │ │ ├── EzMessages │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ └── Info.plist │ └── data.tar ├── EzMusic ├── .gitattributes ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── ControlCenter │ │ │ └── Bundles │ │ │ └── EzMusic.bundle │ │ │ ├── EzMusic │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── EzMusic.bundle │ │ │ ├── EzMusic │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ │ ├── arm64 │ │ │ ├── EzMusic.bundle │ │ │ │ └── EzMusic │ │ │ └── EzMusic.m.3d0e2ca9.o │ │ │ └── armv7 │ │ │ ├── EzMusic.bundle │ │ │ └── EzMusic │ │ │ └── EzMusic.m.28d41685.o │ └── packages │ │ └── com.m4cs.music-0.1-beta ├── ControlCenterUIKit │ ├── CCUICAPackageDescription.h │ ├── CCUIContentModule-Protocol.h │ ├── CCUIContentModuleContentViewController-Protocol.h │ └── CCUIToggleModule.h ├── EzCC │ ├── EzCydiaOpener.bundle │ │ ├── EzCydiaOpener │ │ ├── EzCydiaOpener.bundle │ │ │ ├── EzCydiaOpener │ │ │ ├── Icon.png │ │ │ ├── Icon2x.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ ├── Icon.png │ │ ├── Icon2x.png │ │ ├── Icon@2x.png │ │ └── Info.plist │ ├── EzGoogleAuthenticator.bundle │ │ ├── EzGoogleAuthenticator │ │ ├── EzGoogleAuthenticator.bundle │ │ │ ├── EzGoogleAuthenticator │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ └── Info.plist │ ├── EzLocation.bundle │ │ ├── EzLocation │ │ ├── EzLocation.bundle │ │ │ ├── EzLocation │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ └── Info.plist │ ├── EzMusic.bundle │ │ ├── EzMusic │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ └── Info.plist │ ├── EzReboot.bundle │ │ ├── EzReboot │ │ ├── EzReboot.bundle │ │ │ ├── EzReboot │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ └── Info.plist │ ├── EzRespring.bundle │ │ ├── EzRespring │ │ ├── EzRespring.bundle │ │ │ ├── EzRespring │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ └── Info.plist │ ├── EzSafari.bundle │ │ ├── EzSafari │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ └── Info.plist │ ├── EzSafemode.bundle │ │ ├── EzSafemode │ │ ├── EzSafemode.bundle │ │ │ ├── EzSafemode │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ └── Info.plist │ ├── EzScreenshot.bundle │ │ ├── EzScreenshot │ │ ├── EzScreenshot.bundle │ │ │ ├── EzScreenshot │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ └── Info.plist │ ├── EzSecretSettings.bundle │ │ ├── EzSecretSettings │ │ ├── EzSecretSettings.bundle │ │ │ ├── EzSecretSettings │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ └── Info.plist │ ├── EzSettings.bundle │ │ ├── EzSettings │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ └── Info.plist │ ├── EzSnapchatOpener.bundle │ │ ├── EzSnapchatOpener │ │ ├── EzSnapchatOpener.bundle │ │ │ ├── EzSnapchatOpener │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ └── Info.plist │ └── EzUICache.bundle │ │ ├── EzUICache │ │ ├── EzUICache.bundle │ │ ├── EzUICache │ │ ├── Icon.png │ │ ├── Icon2x.png │ │ ├── Icon@2x.png │ │ └── Info.plist │ │ ├── Icon.png │ │ ├── Icon2x.png │ │ ├── Icon@2x.png │ │ └── Info.plist ├── EzMusic.h ├── EzMusic.m ├── EzMusic.plist ├── Frameworks │ └── ControlCenterUIKit.tbd ├── Resources │ ├── Icon.png │ ├── Icon@2x.png │ └── Info.plist ├── control ├── makefile └── packages │ ├── com.m4cs.music_0.1-beta-1+debug_iphoneos-arm.deb │ ├── com.m4cs.music_0.1-beta-1+debug_iphoneos-arm │ ├── Library │ │ └── ControlCenter │ │ │ └── Bundles │ │ │ └── EzMusic.bundle │ │ │ ├── EzMusic │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ └── data.tar │ ├── com.m4cs.music_0.1-beta-2+debug_iphoneos-arm.deb │ └── com.m4cs.music_0.1-beta-2+debug_iphoneos-arm │ └── data.tar ├── EzPhone ├── .gitattributes ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── ControlCenter │ │ │ └── Bundles │ │ │ └── EzPhone.bundle │ │ │ ├── EzPhone │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── EzPhone.bundle │ │ │ ├── EzPhone │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ │ ├── arm64 │ │ │ ├── EzPhone.bundle │ │ │ │ └── EzPhone │ │ │ └── EzPhone.m.171ff778.o │ │ │ └── armv7 │ │ │ ├── EzPhone.bundle │ │ │ └── EzPhone │ │ │ └── EzPhone.m.6ec31bdd.o │ └── packages │ │ └── com.m4cs.phone-0.1-beta ├── ControlCenterUIKit │ ├── CCUICAPackageDescription.h │ ├── CCUIContentModule-Protocol.h │ ├── CCUIContentModuleContentViewController-Protocol.h │ └── CCUIToggleModule.h ├── EzPhone.h ├── EzPhone.m ├── EzPhone.plist ├── Frameworks │ └── ControlCenterUIKit.tbd ├── Resources │ ├── Icon.png │ ├── Icon@2x.png │ └── Info.plist ├── control ├── makefile └── packages │ ├── com.m4cs.phone_0.1-beta-1+debug_iphoneos-arm.deb │ ├── com.m4cs.phone_0.1-beta-2+debug_iphoneos-arm.deb │ └── com.m4cs.phone_0.1-beta-2+debug_iphoneos-arm │ ├── Library │ └── ControlCenter │ │ └── Bundles │ │ └── EzPhone.bundle │ │ ├── EzPhone │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ └── Info.plist │ └── data.tar ├── EzPlayMusic ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── ControlCenter │ │ │ └── Bundles │ │ │ └── EzPlayMusic.bundle │ │ │ ├── EzPlayMusic │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── EzPlayMusic.bundle │ │ │ ├── EzPlayMusic │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ │ ├── arm64 │ │ │ ├── EzPlayMusic.bundle │ │ │ │ └── EzPlayMusic │ │ │ └── EzPlayMusic.m.8aae26da.o │ │ │ └── armv7 │ │ │ ├── EzPlayMusic.bundle │ │ │ └── EzPlayMusic │ │ │ └── EzPlayMusic.m.e9fb68d7.o │ └── packages │ │ └── com.m4cs.playmusic-0.1-beta ├── ControlCenterUIKit │ ├── CCUICAPackageDescription.h │ ├── CCUIContentModule-Protocol.h │ ├── CCUIContentModuleContentViewController-Protocol.h │ └── CCUIToggleModule.h ├── EzPlayMusic.h ├── EzPlayMusic.m ├── EzPlayMusic.plist ├── Frameworks │ └── ControlCenterUIKit.tbd ├── Resources │ ├── Icon.png │ ├── Icon@2x.png │ └── Info.plist ├── control ├── makefile └── packages │ ├── com.m4cs.playmusic_0.1-beta-1+debug_iphoneos-arm.deb │ └── com.m4cs.playmusic_0.1-beta-1+debug_iphoneos-arm │ ├── Library │ └── ControlCenter │ │ └── Bundles │ │ └── EzPlayMusic.bundle │ │ ├── EzPlayMusic │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ └── Info.plist │ └── data.tar ├── EzReboot ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── ControlCenter │ │ │ └── Bundles │ │ │ └── com.m4cs.control-center.ezreboot.bundle │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ ├── Info.plist │ │ │ └── com.m4cs.control-center.ezreboot │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── arm64 │ │ │ ├── EzRebootModule.xm.e633c76f.o │ │ │ └── com.m4cs.control-center.ezreboot.bundle │ │ │ │ └── com.m4cs.control-center.ezreboot │ │ │ ├── armv7 │ │ │ ├── EzRebootModule.xm.cad72778.o │ │ │ └── com.m4cs.control-center.ezreboot.bundle │ │ │ │ └── com.m4cs.control-center.ezreboot │ │ │ └── com.m4cs.control-center.ezreboot.bundle │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ ├── Info.plist │ │ │ └── com.m4cs.control-center.ezreboot │ └── packages │ │ └── com.m4cs.control-center.ezreboot-1.0 ├── EzRebootModule.h ├── EzRebootModule.m ├── Frameworks │ └── ControlCenterUIKit.tbd ├── Makefile ├── Resources │ ├── Icon.png │ ├── Icon@2x.png │ └── Info.plist ├── control ├── headers │ ├── ClockKitUI │ │ └── CLKUIMetalResourceManager.h │ └── ControlCenterUIKit │ │ ├── CCUICAPackageDescription.h │ │ ├── CCUIContentModule-Protocol.h │ │ ├── CCUIContentModuleContentViewController-Protocol.h │ │ └── CCUIToggleModule.h └── packages │ ├── com.m4cs.control-center.ezreboot_1.0-1+debug_iphoneos-arm.deb │ └── com.m4cs.control-center.ezreboot_1.0-2+debug_iphoneos-arm.deb ├── EzReboot1.1 ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── ControlCenter │ │ │ └── Bundles │ │ │ └── EzReboot.bundle │ │ │ ├── EzReboot │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── EzReboot.bundle │ │ │ ├── EzReboot │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ │ ├── arm64 │ │ │ ├── EzReboot.bundle │ │ │ │ └── EzReboot │ │ │ └── EzRebootModule.xm.8d4884d0.o │ │ │ └── armv7 │ │ │ ├── EzReboot.bundle │ │ │ └── EzReboot │ │ │ └── EzRebootModule.xm.84ad808c.o │ └── packages │ │ ├── com.ezccmodules.control-center.ezreboot-1.0 │ │ ├── com.m4cs.control-center.ezreboot-1.0 │ │ └── com.m4cs.control-center.ezreboot-1.1 ├── EzRebootModule.h ├── EzRebootModule.xm ├── Frameworks │ └── ControlCenterUIKit.tbd ├── Makefile ├── Resources │ ├── Icon.png │ ├── Icon@2x.png │ └── Info.plist ├── control ├── headers │ ├── ClockKitUI │ │ └── CLKUIMetalResourceManager.h │ └── ControlCenterUIKit │ │ ├── CCUICAPackageDescription.h │ │ ├── CCUIContentModule-Protocol.h │ │ ├── CCUIContentModuleContentViewController-Protocol.h │ │ └── CCUIToggleModule.h └── packages │ └── com.m4cs.control-center.ezreboot_1.1-1+debug_iphoneos-arm.deb ├── EzRespring ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── System │ │ │ └── Library │ │ │ └── ControlCenter │ │ │ └── Bundles │ │ │ └── Respring.bundle │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ ├── Info.plist │ │ │ └── Respring │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── EzRespring.bundle │ │ │ ├── EzRespring │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ │ ├── Respring.bundle │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ ├── Info.plist │ │ │ └── Respring │ │ │ ├── arm64 │ │ │ ├── EzRespring.bundle │ │ │ │ └── EzRespring │ │ │ ├── EzRespringModule.m.7717408c.o │ │ │ ├── EzRespringModule.m.b342c358.o │ │ │ └── Respring.bundle │ │ │ │ └── Respring │ │ │ └── armv7 │ │ │ ├── EzRespring.bundle │ │ │ └── EzRespring │ │ │ ├── EzRespringModule.m.386413e0.o │ │ │ ├── EzRespringModule.m.782e4d28.o │ │ │ └── Respring.bundle │ │ │ └── Respring │ └── packages │ │ ├── com.apple.control-center.respring-1.0 │ │ └── com.m4cs.control-center.ezrespring-1.0 ├── EzRespring.zip ├── EzRespringModule.h ├── EzRespringModule.m ├── Frameworks │ └── ControlCenterUIKit.tbd ├── Makefile ├── Resources │ ├── Icon.png │ ├── Icon@2x.png │ └── Info.plist ├── control ├── headers │ └── ControlCenterUIKit │ │ ├── CCUICAPackageDescription.h │ │ ├── CCUIContentModule-Protocol.h │ │ ├── CCUIContentModuleContentViewController-Protocol.h │ │ └── CCUIToggleModule.h ├── packages │ ├── com.apple.control-center.respring_1.0-1+debug_iphoneos-arm.deb │ ├── com.apple.control-center.respring_1.0-1+debug_iphoneos-arm │ │ ├── Library │ │ │ └── ControlCenter │ │ │ │ └── Bundles │ │ │ │ └── EzRespring.bundle │ │ │ │ ├── EzRespring │ │ │ │ ├── Icon.png │ │ │ │ ├── Icon@2x.png │ │ │ │ └── Info.plist │ │ └── data.tar │ ├── com.apple.control-center.respring_1.0-2+debug_iphoneos-arm.deb │ ├── com.apple.control-center.respring_1.0-2+debug_iphoneos-arm │ │ ├── System │ │ │ └── Library │ │ │ │ └── ControlCenter │ │ │ │ └── Bundles │ │ │ │ ├── LibUsbDotNet.dll │ │ │ │ ├── ModuleWhitelist.plist │ │ │ │ ├── RecBoot.exe │ │ │ │ ├── RecBoot.txt │ │ │ │ ├── Respring.bundle │ │ │ │ ├── Icon.png │ │ │ │ ├── Icon@2x.png │ │ │ │ ├── Info.plist │ │ │ │ └── Respring │ │ │ │ ├── iPHUCWIN32.exe │ │ │ │ ├── iTunnel.exe │ │ │ │ └── readline5.dll │ │ └── data.tar │ └── com.m4cs.control-center.ezrespring_1.0-1+debug_iphoneos-arm.deb └── postinst ├── EzSafari ├── .gitattributes ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── ControlCenter │ │ │ └── Bundles │ │ │ └── EzSafari.bundle │ │ │ ├── EzSafari │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── EzMusic.bundle │ │ │ ├── EzMusic │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ │ ├── EzSafari.bundle │ │ │ ├── EzSafari │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ │ ├── arm64 │ │ │ ├── EzMusic.bundle │ │ │ │ └── EzMusic │ │ │ ├── EzSafari.bundle │ │ │ │ └── EzSafari │ │ │ ├── EzSafari.m.08c37783.o │ │ │ └── EzSafari.m.4e4f10f6.o │ │ │ └── armv7 │ │ │ ├── EzMusic.bundle │ │ │ └── EzMusic │ │ │ ├── EzSafari.bundle │ │ │ └── EzSafari │ │ │ ├── EzSafari.m.7eb4703d.o │ │ │ └── EzSafari.m.ba976ac2.o │ └── packages │ │ └── com.m4cs.safari-0.1-beta ├── ControlCenterUIKit │ ├── CCUICAPackageDescription.h │ ├── CCUIContentModule-Protocol.h │ ├── CCUIContentModuleContentViewController-Protocol.h │ └── CCUIToggleModule.h ├── EzSafari.h ├── EzSafari.m ├── EzSafari.plist ├── Frameworks │ └── ControlCenterUIKit.tbd ├── Resources │ ├── Icon.png │ ├── Icon@2x.png │ └── Info.plist ├── control ├── makefile └── packages │ ├── Library │ └── ControlCenter │ │ └── Bundles │ │ └── EzSafari.bundle │ │ ├── EzSafari │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ └── Info.plist │ ├── com.m4cs.safari_0.1-beta-1+debug_iphoneos-arm.deb │ ├── com.m4cs.safari_0.1-beta-2+debug_iphoneos-arm.deb │ ├── com.m4cs.safari_0.1-beta-3+debug_iphoneos-arm.deb │ ├── com.m4cs.safari_0.1-beta-3+debug_iphoneos-arm │ └── data.tar │ └── data.tar ├── EzSafemode ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── ControlCenter │ │ │ └── Bundles │ │ │ └── EzSafemode.bundle │ │ │ ├── EzSafemode │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ ├── build_session │ ├── fakeroot │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── EzSafemode.bundle │ │ │ ├── EzSafemode │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ │ ├── arm64 │ │ │ ├── EzSafemode.bundle │ │ │ │ └── EzSafemode │ │ │ └── EzSafemodeModule.m.1a15c5f1.o │ │ │ └── armv7 │ │ │ ├── EzSafemode.bundle │ │ │ └── EzSafemode │ │ │ └── EzSafemodeModule.m.09520948.o │ └── packages │ │ └── com.ezccmodules.control-center.ezsafemodemodule-0.0.1 ├── EzSafemodeModule.h ├── EzSafemodeModule.m ├── Frameworks │ └── ControlCenterUIKit.tbd ├── Makefile ├── Resources │ ├── Icon.png │ ├── Icon@2x.png │ └── Info.plist ├── control ├── headers │ └── ControlCenterUIKit │ │ ├── CCUICAPackageDescription.h │ │ ├── CCUIContentModule-Protocol.h │ │ ├── CCUIContentModuleContentViewController-Protocol.h │ │ └── CCUIToggleModule.h └── packages │ └── com.ezccmodules.control-center.ezsafemodemodule_0.0.1-1+debug_iphoneos-arm.deb ├── EzSettingsOpener ├── .gitattributes ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── ControlCenter │ │ │ └── Bundles │ │ │ └── EzSettings.bundle │ │ │ ├── EzSettings │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── EzSettings.bundle │ │ │ ├── EzSettings │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ │ ├── arm64 │ │ │ ├── EzSettings.bundle │ │ │ │ └── EzSettings │ │ │ └── EzSettings.m.55f85f26.o │ │ │ └── armv7 │ │ │ ├── EzSettings.bundle │ │ │ └── EzSettings │ │ │ └── EzSettings.m.8ca6b43f.o │ └── packages │ │ └── com.m4cs.settings-0.3-beta ├── ControlCenterUIKit │ ├── CCUICAPackageDescription.h │ ├── CCUIContentModule-Protocol.h │ ├── CCUIContentModuleContentViewController-Protocol.h │ └── CCUIToggleModule.h ├── EzSettings.h ├── EzSettings.m ├── EzSettings.plist ├── Frameworks │ └── ControlCenterUIKit.tbd ├── Resources │ ├── Icon.png │ ├── Icon@2x.png │ └── Info.plist ├── control ├── makefile └── packages │ ├── com.m4cs.settings_0.3-beta-1+debug_iphoneos-arm │ ├── Library │ │ └── ControlCenter │ │ │ └── Bundles │ │ │ └── EzSettings.bundle │ │ │ ├── EzSettings │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ └── data.tar │ ├── com.m4cs.settings_0.3-beta-2+debug_iphoneos-arm.deb │ ├── com.m4cs.settings_0.3-beta-2+debug_iphoneos-arm │ └── data.tar │ └── com.m4cs.settings_0.3-beta-3+debug_iphoneos-arm.deb ├── EzSnapchatLauncher ├── .gitattributes ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── ControlCenter │ │ │ └── Bundles │ │ │ └── EzSnapchatOpener.bundle │ │ │ ├── EzSnapchatOpener │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── EzSnapchatOpener.bundle │ │ │ ├── EzSnapchatOpener │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ │ ├── arm64 │ │ │ ├── EzSnapchatOpener.bundle │ │ │ │ └── EzSnapchatOpener │ │ │ └── EzSnapchatOpener.m.c5c3d9ed.o │ │ │ └── armv7 │ │ │ ├── EzSnapchatOpener.bundle │ │ │ └── EzSnapchatOpener │ │ │ └── EzSnapchatOpener.m.1947871a.o │ └── packages │ │ └── com.m4cs.snapchatopener-0.1-beta ├── ControlCenterUIKit │ ├── CCUICAPackageDescription.h │ ├── CCUIContentModule-Protocol.h │ ├── CCUIContentModuleContentViewController-Protocol.h │ └── CCUIToggleModule.h ├── EzSnapchatOpener.h ├── EzSnapchatOpener.m ├── EzSnapchatOpener.plist ├── Frameworks │ └── ControlCenterUIKit.tbd ├── Resources │ ├── Icon.png │ ├── Icon@2x.png │ └── Info.plist ├── control ├── makefile └── packages │ ├── com.m4cs.snapchatopener_0.1-beta-1+debug_iphoneos-arm.deb │ └── com.m4cs.snapchatopener_0.1-beta-1+debug_iphoneos-arm │ └── data.tar ├── EzSpotify ├── .gitattributes ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── ControlCenter │ │ │ └── Bundles │ │ │ └── EzSpotify.bundle │ │ │ ├── EzSpotify │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── EzSpotify.bundle │ │ │ ├── EzSpotify │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ │ ├── arm64 │ │ │ ├── EzSpotify.bundle │ │ │ │ └── EzSpotify │ │ │ └── EzSpotify.m.08f9b31a.o │ │ │ └── armv7 │ │ │ ├── EzSpotify.bundle │ │ │ └── EzSpotify │ │ │ └── EzSpotify.m.c313c3bd.o │ └── packages │ │ └── com.m4cs.spotify-0.1-beta ├── ControlCenterUIKit │ ├── CCUICAPackageDescription.h │ ├── CCUIContentModule-Protocol.h │ ├── CCUIContentModuleContentViewController-Protocol.h │ └── CCUIToggleModule.h ├── EzSpotify.h ├── EzSpotify.m ├── EzSpotify.plist ├── EzSpotify.zip ├── Frameworks │ └── ControlCenterUIKit.tbd ├── Resources │ ├── Icon.png │ ├── Icon@2x.png │ └── Info.plist ├── control ├── makefile └── packages │ ├── com.m4cs.spotify_0.1-beta-1+debug_iphoneos-arm.deb │ └── com.m4cs.spotify_0.1-beta-1+debug_iphoneos-arm │ └── data.tar ├── EzUICache ├── .gitattributes ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── ControlCenter │ │ │ └── Bundles │ │ │ └── EzUICache.bundle │ │ │ ├── EzUICache │ │ │ ├── Icon.png │ │ │ ├── Icon2x.png │ │ │ └── Info.plist │ ├── build_session │ ├── fakeroot │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── EzUICache.bundle │ │ │ ├── EzUICache │ │ │ ├── Icon.png │ │ │ ├── Icon2x.png │ │ │ └── Info.plist │ │ │ ├── arm64 │ │ │ ├── EzUICache.bundle │ │ │ │ └── EzUICache │ │ │ └── EzUICacheModule.m.d094ff43.o │ │ │ └── armv7 │ │ │ ├── EzUICache.bundle │ │ │ └── EzUICache │ │ │ └── EzUICacheModule.m.fd4937b3.o │ └── packages │ │ └── com.exccmodules.control-center.ezuicache-0.0.1 ├── EzUICacheModule.h ├── EzUICacheModule.m ├── Frameworks │ └── ControlCenterUIKit.tbd ├── Makefile ├── Resources │ ├── Icon.png │ ├── Icon@2x.png │ └── Info.plist ├── control ├── headers │ └── ControlCenterUIKit │ │ ├── CCUICAPackageDescription.h │ │ ├── CCUIContentModule-Protocol.h │ │ ├── CCUIContentModuleContentViewController-Protocol.h │ │ └── CCUIToggleModule.h └── packages │ ├── com.exccmodules.control-center.ezuicache_0.0.1-1+debug_iphoneos-arm.deb │ └── com.exccmodules.control-center.ezuicache_0.0.1-7+debug_iphoneos-arm.deb ├── EzVPN ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── ControlCenter │ │ │ └── Bundles │ │ │ └── ezvpn.bundle │ │ │ ├── EzVPN │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ ├── build_session │ ├── fakeroot │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── EzVPN.bundle │ │ │ ├── EzVPN │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ │ └── arm64 │ │ │ ├── EzVPN.bundle │ │ │ └── EzVPN │ │ │ └── EzVPNModule.m.a7523423.o │ └── packages │ │ ├── com.ezccmodules.control-center.ezvpn-0.0.1 │ │ └── com.ezccmodules.control-center.ezvpnmodule-0.0.1 ├── EzVPNModule.h ├── EzVPNModule.m ├── Frameworks │ └── ControlCenterUIKit.tbd ├── Makefile ├── Resources │ ├── Icon.png │ ├── Icon@2x.png │ ├── Info.plist │ ├── Resources.zip │ ├── box.png │ ├── box@2x.png │ ├── downarrow.png │ └── downarrow@2x.png ├── control └── headers │ ├── ControlCenterUIKit │ ├── CCUICAPackageDescription.h │ ├── CCUIContentModule-Protocol.h │ ├── CCUIContentModuleContentViewController-Protocol.h │ └── CCUIToggleModule.h │ └── NetworkExtension │ └── NetworkExtension.h ├── GoogleAuthenticator ├── .gitattributes ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── ControlCenter │ │ │ └── Bundles │ │ │ └── EzGoogleAuthenticator.bundle │ │ │ ├── EzGoogleAuthenticator │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── EzGoogleAuthenticator.bundle │ │ │ ├── EzGoogleAuthenticator │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ │ ├── arm64 │ │ │ ├── EzGoogleAuthenticator.bundle │ │ │ │ └── EzGoogleAuthenticator │ │ │ └── EzGoogleAuthenticator.m.6bf73f3a.o │ │ │ └── armv7 │ │ │ ├── EzGoogleAuthenticator.bundle │ │ │ └── EzGoogleAuthenticator │ │ │ └── EzGoogleAuthenticator.m.2d9effde.o │ └── packages │ │ ├── com.m4cs.googleauthenticator-0.1-beta │ │ ├── com.m4cs.googleauthenticator-0.2-beta │ │ ├── com.m4cs.googleauthenticator-0.3-beta │ │ └── com.m4cs.googleauthenticator-0.4-beta ├── ControlCenterUIKit │ ├── CCUICAPackageDescription.h │ ├── CCUIContentModule-Protocol.h │ ├── CCUIContentModuleContentViewController-Protocol.h │ └── CCUIToggleModule.h ├── EzGoogleAuthenticator.h ├── EzGoogleAuthenticator.m ├── EzGoogleAuthenticator.plist ├── Frameworks │ └── ControlCenterUIKit.tbd ├── GoogleAuthenticator.rar ├── Resources │ ├── Icon.png │ ├── Icon@2x.png │ └── Info.plist ├── control ├── makefile └── packages │ ├── com.m4cs.googleauthenticator_0.4-beta-2+debug_iphoneos-arm.deb │ └── com.m4cs.googleauthenticator_0.4-beta-2+debug_iphoneos-arm │ └── data.tar ├── HaystackCC ├── HSKEzCCModule.h ├── HSKEzCCModule.m ├── HSKEzCCModuleViewController.h ├── HSKEzCCModuleViewController.m ├── Makefile ├── MaybeITwurks.zip ├── Resources │ ├── .DS_Store │ ├── Info.plist │ └── respring.png └── control ├── LICENSE ├── LPMiPad ├── .gitattributes ├── .theos │ ├── build_session │ └── obj │ │ └── debug │ │ ├── .stamp │ │ └── LPMiPad.bundle │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ └── Info.plist ├── CoreDuet.h ├── Frameworks │ ├── ControlCenterUIKit.tbd │ └── SAObjects.tbd ├── LPMiPad.h ├── LPMiPad.m ├── Makefile ├── Resources │ ├── Icon.png │ ├── Icon@2x.png │ └── Info.plist ├── control └── headers │ └── ControlCenterUIKit │ ├── CCUICAPackageDescription.h │ ├── CCUIContentModule-Protocol.h │ ├── CCUIContentModuleContentViewController-Protocol.h │ └── CCUIToggleModule.h ├── LocationModule ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── ControlCenter │ │ │ └── Bundles │ │ │ └── EzLocationModule.bundle │ │ │ ├── EzLocationModule │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── EzLocationModule.bundle │ │ │ ├── EzLocationModule │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ │ ├── arm64 │ │ │ ├── EzLocationModule.bundle │ │ │ │ └── EzLocationModule │ │ │ ├── EzLocationModule.m.436af89f.o │ │ │ ├── EzLocationModule.m.dc5c5fbc.o │ │ │ └── com.ezccmodules.control-center.ezlocationmodule.bundle │ │ │ │ └── com.ezccmodules.control-center.ezlocationmodule │ │ │ ├── armv7 │ │ │ ├── EzLocationModule.bundle │ │ │ │ └── EzLocationModule │ │ │ ├── EzLocationModule.m.073bd3fa.o │ │ │ ├── EzLocationModule.m.b077da8f.o │ │ │ └── com.ezccmodules.control-center.ezlocationmodule.bundle │ │ │ │ └── com.ezccmodules.control-center.ezlocationmodule │ │ │ └── com.ezccmodules.control-center.ezlocationmodule.bundle │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ ├── Info.plist │ │ │ └── com.ezccmodules.control-center.ezlocationmodule │ └── packages │ │ ├── Packagecom.ezccmodules.control-center.ezlocationmodule-0.0.1 │ │ └── com.ezccmodules.control-center.ezlocationmodule-0.0.1 ├── EzLocationModule.h ├── EzLocationModule.m ├── Frameworks │ └── ControlCenterUIKit.tbd ├── Resources │ ├── Icon.png │ ├── Icon@2x.png │ ├── Info.plist │ └── Numbers │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ ├── 9.png │ │ └── Numbers.zip ├── control ├── headers │ └── ControlCenterUIKit │ │ ├── CCUICAPackageDescription.h │ │ ├── CCUIContentModule-Protocol.h │ │ ├── CCUIContentModuleContentViewController-Protocol.h │ │ └── CCUIToggleModule.h ├── makefile └── packages │ ├── com.ezccmodules.control-center.ezlocationmodule_0.0.1-2+debug_iphoneos-arm.deb │ └── com.ezccmodules.control-center.ezlocationmodule_0.0.1-3+debug_iphoneos-arm.deb ├── MagnifierThingy ├── Assets.car ├── Info.plist ├── MagnifierModule ├── _CodeSignature │ └── CodeResources ├── ar.lproj │ └── InfoPlist.strings ├── ca.lproj │ └── InfoPlist.strings ├── cs.lproj │ └── InfoPlist.strings ├── da.lproj │ └── InfoPlist.strings ├── de.lproj │ └── InfoPlist.strings ├── el.lproj │ └── InfoPlist.strings ├── en.lproj │ └── InfoPlist.strings ├── en_AU.lproj │ └── InfoPlist.strings ├── en_GB.lproj │ └── InfoPlist.strings ├── es.lproj │ └── InfoPlist.strings ├── es_419.lproj │ └── InfoPlist.strings ├── fi.lproj │ └── InfoPlist.strings ├── fr.lproj │ └── InfoPlist.strings ├── fr_CA.lproj │ └── InfoPlist.strings ├── he.lproj │ └── InfoPlist.strings ├── hi.lproj │ └── InfoPlist.strings ├── hr.lproj │ └── InfoPlist.strings ├── hu.lproj │ └── InfoPlist.strings ├── id.lproj │ └── InfoPlist.strings ├── it.lproj │ └── InfoPlist.strings ├── ja.lproj │ └── InfoPlist.strings ├── ko.lproj │ └── InfoPlist.strings ├── ms.lproj │ └── InfoPlist.strings ├── nl.lproj │ └── InfoPlist.strings ├── no.lproj │ └── InfoPlist.strings ├── pl.lproj │ └── InfoPlist.strings ├── pt.lproj │ └── InfoPlist.strings ├── pt_PT.lproj │ └── InfoPlist.strings ├── ro.lproj │ └── InfoPlist.strings ├── ru.lproj │ └── InfoPlist.strings ├── sk.lproj │ └── InfoPlist.strings ├── sv.lproj │ └── InfoPlist.strings ├── th.lproj │ └── InfoPlist.strings ├── tr.lproj │ └── InfoPlist.strings ├── uk.lproj │ └── InfoPlist.strings ├── vi.lproj │ └── InfoPlist.strings ├── zh_CN.lproj │ └── InfoPlist.strings ├── zh_HK.lproj │ └── InfoPlist.strings └── zh_TW.lproj │ └── InfoPlist.strings ├── ModernXI ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ ├── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ │ ├── ModernXI.dylib │ │ │ │ └── ModernXI.plist │ │ │ ├── PreferenceBundles │ │ │ └── ModernXIPrefs.bundle │ │ │ │ ├── ModernXIPrefs │ │ │ │ ├── Prefs.plist │ │ │ │ └── modernxi.png │ │ │ └── PreferenceLoader │ │ │ └── Preferences │ │ │ └── ModernXIPrefs.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── ModernXI.dylib │ │ │ ├── ModernXIPrefs.bundle │ │ │ ├── ModernXIPrefs │ │ │ ├── Prefs.plist │ │ │ └── modernxi.png │ │ │ ├── arm64 │ │ │ ├── ModernXI.dylib │ │ │ ├── ModernXIPrefs.bundle │ │ │ │ └── ModernXIPrefs │ │ │ ├── Preferences.m.67c9d88b.o │ │ │ └── Tweak.xm.415af78b.o │ │ │ └── armv7 │ │ │ ├── ModernXIPrefs.bundle │ │ │ └── ModernXIPrefs │ │ │ └── Preferences.m.836c39f7.o │ └── packages │ │ └── io.ominousness.modernxi-0.1.0 ├── Makefile ├── Prefs │ ├── Makefile │ ├── Preferences.h │ ├── Preferences.m │ ├── Resources │ │ ├── Prefs.plist │ │ └── modernxi.png │ └── entry.plist ├── Tweak │ ├── Makefile │ ├── ModernXI.plist │ ├── Tweak.h │ └── Tweak.xm ├── control └── packages │ ├── io.ominousness.modernxi_0.1.0-1+debug_iphoneos-arm.deb │ ├── io.ominousness.modernxi_0.1.0-2+debug_iphoneos-arm.deb │ └── io.ominousness.modernxi_0.1.0-3+debug_iphoneos-arm.deb ├── NoBlurFolderIconsXI-master ├── .theos │ ├── build_session │ └── obj │ │ └── debug │ │ ├── .stamp │ │ ├── arm64 │ │ └── Tweak.xm.mm │ │ └── armv7 │ │ └── Tweak.xm.mm ├── Makefile ├── NoBlurFolderIconXI.plist ├── README.md ├── Tweak.xm ├── control └── prefs │ ├── 001RootListController.h │ ├── 001RootListController.m │ ├── Makefile │ ├── Resources │ ├── Info.plist │ └── Root.plist │ └── entry.plist ├── NoPasscodeBlur ├── LICENSE ├── Makefile ├── NoBlur.h ├── NoBlur.plist ├── README.md ├── Tweak.xm ├── control └── noblur │ ├── Makefile │ ├── NBAppsListController.h │ ├── NBAppsListController.mm │ ├── NBBlurListController.mm │ ├── NBCustomizeListController.h │ ├── NBCustomizeListController.mm │ ├── NBIndividualListController.mm │ ├── NBPreViewController.h │ ├── NBPreViewController.mm │ ├── NBRootListController.h │ ├── NBRootListController.mm │ ├── Resources │ ├── Individual.plist │ ├── Info.plist │ ├── Mail.png │ ├── Mail@2x.png │ ├── Mail@3x.png │ ├── NoBlur.png │ ├── NoBlur@2x.png │ ├── Root.plist │ ├── Twitter.png │ ├── Twitter@2x.png │ └── Twitter@3x.png │ └── entry.plist ├── README.md ├── Respring Module ├── CTXTestModule.h ├── CTXTestModule.m ├── Frameworks │ └── ControlCenterUIKit.tbd ├── Makefile ├── README.md ├── Resources │ ├── Icon.png │ ├── Icon.psd │ ├── Icon@2x.png │ └── Info.plist ├── control └── headers │ ├── .DS_Store │ └── ControlCenterUIKit │ ├── CCUICAPackageDescription.h │ ├── CCUIContentModule-Protocol.h │ ├── CCUIContentModuleContentViewController-Protocol.h │ └── CCUIToggleModule.h ├── Rooster ├── .gitignore ├── .travis.yml ├── Makefile ├── README.md ├── Rooster.plist ├── Tweak.xm └── control ├── aesirpirateprotection ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── AesirPirateProtection.dylib │ │ │ └── AesirPirateProtection.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── AesirPirateProtection.dylib │ │ │ ├── arm64 │ │ │ ├── AesirPirateProtection.dylib │ │ │ ├── AesirPirateProtection.dylib.dSYM │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ └── AesirPirateProtection.dylib │ │ │ ├── Tweak.xm.6389fa5c.Td │ │ │ ├── Tweak.xm.6389fa5c.o │ │ │ └── Tweak.xm.mm │ │ │ └── armv7 │ │ │ ├── AesirPirateProtection.dylib │ │ │ ├── AesirPirateProtection.dylib.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── AesirPirateProtection.dylib │ │ │ ├── Tweak.xm.2992d771.Td │ │ │ ├── Tweak.xm.2992d771.o │ │ │ └── Tweak.xm.mm │ └── packages │ │ └── com.macs.aesirpirateprotection-0.0.1 ├── AesirPirateProtection.plist ├── Makefile ├── Tweak.xm ├── UIKit-Structs.h ├── UIView.h ├── UIWindow.h ├── control └── packages │ ├── com.macs.aesirpirateprotection_0.0.1-1+debug_iphoneos-arm.deb │ ├── com.macs.aesirpirateprotection_0.0.1-10+debug_iphoneos-arm.deb │ ├── com.macs.aesirpirateprotection_0.0.1-11+debug_iphoneos-arm.deb │ ├── com.macs.aesirpirateprotection_0.0.1-12+debug_iphoneos-arm.deb │ ├── com.macs.aesirpirateprotection_0.0.1-13+debug_iphoneos-arm.deb │ ├── com.macs.aesirpirateprotection_0.0.1-2+debug_iphoneos-arm.deb │ ├── com.macs.aesirpirateprotection_0.0.1-3+debug_iphoneos-arm.deb │ ├── com.macs.aesirpirateprotection_0.0.1-4+debug_iphoneos-arm.deb │ ├── com.macs.aesirpirateprotection_0.0.1-5+debug_iphoneos-arm.deb │ ├── com.macs.aesirpirateprotection_0.0.1-6+debug_iphoneos-arm.deb │ ├── com.macs.aesirpirateprotection_0.0.1-7+debug_iphoneos-arm.deb │ ├── com.macs.aesirpirateprotection_0.0.1-8+debug_iphoneos-arm.deb │ └── com.macs.aesirpirateprotection_0.0.1-9+debug_iphoneos-arm.deb ├── appitor ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── Appitor.dylib │ │ │ └── Appitor.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── Appitor.dylib │ │ │ ├── arm64 │ │ │ ├── Appitor.dylib │ │ │ └── Tweak.xm.12eafb55.o │ │ │ └── armv7 │ │ │ ├── Appitor.dylib │ │ │ └── Tweak.xm.fd1459ac.o │ └── packages │ │ └── com.macs.appitor-0.0.1 ├── Appitor.plist ├── Makefile ├── Tweak.xm ├── control └── packages │ ├── Library │ └── MobileSubstrate │ │ └── DynamicLibraries │ │ ├── Appitor.dylib │ │ └── Appitor.plist │ ├── com.macs.appitor_0.0.1-2+debug_iphoneos-arm.deb │ └── data.tar ├── atcxi ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── ATCXI.dylib │ │ │ └── ATCXI.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── ATCXI.dylib │ │ │ ├── arm64 │ │ │ ├── ATCXI.dylib │ │ │ ├── ATCXI.dylib.dSYM │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ └── ATCXI.dylib │ │ │ ├── Tweak.xm.8b4aff2d.Td │ │ │ ├── Tweak.xm.8b4aff2d.o │ │ │ └── Tweak.xm.mm │ │ │ └── armv7 │ │ │ ├── ATCXI.dylib │ │ │ ├── ATCXI.dylib.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── ATCXI.dylib │ │ │ ├── Tweak.xm.32fa496a.Td │ │ │ ├── Tweak.xm.32fa496a.o │ │ │ └── Tweak.xm.mm │ └── packages │ │ └── com.macs.atcxi-0.0.1 ├── ATCXI.plist ├── Makefile ├── Tweak.xm ├── control └── packages │ └── com.macs.atcxi_0.0.1-1+debug_iphoneos-arm.deb ├── auxi ├── Auxi.plist ├── Makefile ├── Tweak.xm └── control ├── axistweak ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── AxisTweak.dylib │ │ │ └── AxisTweak.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── AxisTweak.dylib │ │ │ ├── arm64 │ │ │ ├── AxisTweak.dylib │ │ │ └── Tweak.xm.09c711c7.o │ │ │ └── armv7 │ │ │ ├── AxisTweak.dylib │ │ │ └── Tweak.xm.805337ae.o │ └── packages │ │ └── com.yourcompany.axistweak-0.0.1 ├── AxisTweak.plist ├── Makefile ├── Tweak.xm ├── control └── packages │ ├── com.yourcompany.axistweak_0.0.1-1+debug_iphoneos-arm.deb │ └── com.yourcompany.axistweak_0.0.1-2+debug_iphoneos-arm.deb ├── bettercards ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── BetterCards.dylib │ │ │ └── BetterCards.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── BetterCards.dylib │ │ │ ├── arm64 │ │ │ ├── BetterCards.dylib │ │ │ └── Tweak.xm.a58363f7.o │ │ │ └── armv7 │ │ │ ├── BetterCards.dylib │ │ │ └── Tweak.xm.20e262fc.o │ └── packages │ │ └── com.macs.bettercards-0.0.1 ├── BetterCards.plist ├── Makefile ├── Tweak.xm ├── control └── packages │ ├── com.macs.bettercards_0.0.1-1+debug_iphoneos-arm.deb │ ├── com.macs.bettercards_0.0.1-2+debug_iphoneos-arm.deb │ └── com.macs.bettercards_0.0.1-3+debug_iphoneos-arm.deb ├── betterncxi ├── BetterNCXI.plist ├── Makefile ├── Tweak.xm └── control ├── betterswitcher ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── BetterSwitcher.dylib │ │ │ └── BetterSwitcher.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── BetterSwitcher.dylib │ │ │ ├── arm64 │ │ │ ├── BetterSwitcher.dylib │ │ │ ├── BetterSwitcher.dylib.dSYM │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ └── BetterSwitcher.dylib │ │ │ ├── Tweak.xm.dc7c9305.Td │ │ │ ├── Tweak.xm.dc7c9305.o │ │ │ └── Tweak.xm.mm │ │ │ └── armv7 │ │ │ ├── BetterSwitcher.dylib │ │ │ ├── BetterSwitcher.dylib.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── BetterSwitcher.dylib │ │ │ ├── Tweak.xm.264d6c26.Td │ │ │ ├── Tweak.xm.264d6c26.o │ │ │ └── Tweak.xm.mm │ └── packages │ │ └── com.auxilium.betterswitcher-0.0.1 ├── BetterSwitcher.plist ├── Makefile ├── Tweak.xm ├── betterswitcher.zip ├── control └── packages │ ├── com.auxilium.betterswitcher_0.0.1-1+debug_iphoneos-arm.deb │ ├── com.auxilium.betterswitcher_0.0.1-1+debug_iphoneos-arm │ ├── Library │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── BetterSwitcher.dylib │ │ │ └── BetterSwitcher.plist │ └── data.tar │ ├── com.auxilium.betterswitcher_0.0.1-2+debug_iphoneos-arm.deb │ ├── com.auxilium.betterswitcher_0.0.1-2+debug_iphoneos-arm │ ├── Library │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── BetterSwitcher.dylib │ │ │ └── BetterSwitcher.plist │ └── data.tar │ ├── com.auxilium.betterswitcher_0.0.1-3+debug_iphoneos-arm.deb │ ├── com.auxilium.betterswitcher_0.0.1-3+debug_iphoneos-arm │ ├── Library │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── BetterSwitcher.dylib │ │ │ └── BetterSwitcher.plist │ └── data.tar │ ├── com.auxilium.betterswitcher_0.0.1-4+debug_iphoneos-arm.deb │ └── com.auxilium.betterswitcher_0.0.1-4+debug_iphoneos-arm │ ├── Library │ └── MobileSubstrate │ │ └── DynamicLibraries │ │ ├── BetterSwitcher.dylib │ │ └── BetterSwitcher.plist │ └── data.tar ├── bouncy ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── Bouncy.dylib │ │ │ └── Bouncy.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── Bouncy.dylib │ │ │ ├── arm64 │ │ │ ├── Bouncy.dylib │ │ │ └── Tweak.xm.ff4e6f6c.o │ │ │ └── armv7 │ │ │ ├── Bouncy.dylib │ │ │ └── Tweak.xm.69f4e6f9.o │ └── packages │ │ └── com.macs.bouncy-0.0.1 ├── Bouncy.plist ├── Makefile ├── Tweak.xm ├── control └── packages │ ├── com.macs.bouncy_0.0.1-1+debug_iphoneos-arm.deb │ ├── com.macs.bouncy_0.0.1-2+debug_iphoneos-arm.deb │ └── com.macs.bouncy_0.0.1-3+debug_iphoneos-arm.deb ├── buttdialbegone ├── .theos │ ├── build_session │ └── obj │ │ └── debug │ │ ├── .stamp │ │ ├── arm64 │ │ └── Tweak.xm.mm │ │ └── armv7 │ │ └── Tweak.xm.mm ├── ButtDialBeGone.plist ├── Makefile ├── Tweak.xm └── control ├── colorcam ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ ├── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ │ ├── ColorCam.dylib │ │ │ │ └── ColorCam.plist │ │ │ ├── PreferenceBundles │ │ │ └── ColorCamPrefs.bundle │ │ │ │ ├── ColorCamPrefs │ │ │ │ ├── Info.plist │ │ │ │ ├── Root.plist │ │ │ │ └── twitter.png │ │ │ └── PreferenceLoader │ │ │ └── Preferences │ │ │ └── ColorCamPrefs.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── ColorCam.dylib │ │ │ ├── ColorCamPrefs.bundle │ │ │ ├── ColorCamPrefs │ │ │ ├── Info.plist │ │ │ ├── Root.plist │ │ │ └── twitter.png │ │ │ ├── arm64 │ │ │ ├── CCPRootListController.m.3b4bb4b6.o │ │ │ ├── ColorCam.dylib │ │ │ ├── ColorCamPrefs.bundle │ │ │ │ └── ColorCamPrefs │ │ │ └── Tweak.xm.b0b20a8e.o │ │ │ └── armv7 │ │ │ ├── CCPRootListController.m.116b5c98.o │ │ │ ├── ColorCam.dylib │ │ │ ├── ColorCamPrefs.bundle │ │ │ └── ColorCamPrefs │ │ │ └── Tweak.xm.0b7e9061.o │ └── packages │ │ ├── com.macs.colorcam-0.0.1 │ │ └── com.macs.colorcam-1.0.0 ├── ColorCam.plist ├── Makefile ├── Tweak.xm ├── colorcamprefs │ ├── CCPRootListController.h │ ├── CCPRootListController.m │ ├── Makefile │ ├── Resources │ │ ├── Info.plist │ │ ├── Root.plist │ │ └── twitter.png │ └── entry.plist ├── control └── packages │ ├── com.macs.colorcam_0.0.1-1+debug_iphoneos-arm.deb │ ├── com.macs.colorcam_0.0.1-2+debug_iphoneos-arm.deb │ ├── com.macs.colorcam_0.0.1-3+debug_iphoneos-arm.deb │ ├── com.macs.colorcam_1.0.0-1+debug_iphoneos-arm.deb │ ├── com.macs.colorcam_1.0.0-2+debug_iphoneos-arm.deb │ ├── com.macs.colorcam_1.0.0-3+debug_iphoneos-arm.deb │ ├── com.macs.colorcam_1.0.0-4+debug_iphoneos-arm.deb │ └── com.macs.colorcam_1.0.0-5+debug_iphoneos-arm.deb ├── colorclock ├── .theos │ ├── build_session │ └── obj │ │ └── debug │ │ ├── .stamp │ │ ├── arm64 │ │ └── Tweak.xm.mm │ │ └── armv7 │ │ └── Tweak.xm.mm ├── ColorClock.plist ├── Makefile ├── Tweak.xm └── control ├── colorfolders ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── ColorFolders.dylib │ │ │ └── ColorFolders.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── ColorFolders.dylib │ │ │ ├── arm64 │ │ │ ├── ColorFolders.dylib │ │ │ └── Tweak.xm.mm │ │ │ └── armv7 │ │ │ ├── ColorFolders.dylib │ │ │ └── Tweak.xm.mm │ └── packages │ │ └── com.macs.colorfolders-0.0.1 ├── ColorFolders.plist ├── Makefile ├── Tweak.xm ├── control └── packages │ └── com.macs.colorfolders_0.0.1-1+debug_iphoneos-arm.deb ├── colormycc ├── .DS_Store ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ ├── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ │ ├── ColorMyCC.dylib │ │ │ │ └── ColorMyCC.plist │ │ │ ├── PreferenceBundles │ │ │ └── ColorMyCC.bundle │ │ │ │ ├── ColorMyCC │ │ │ │ ├── Info.plist │ │ │ │ └── Root.plist │ │ │ └── PreferenceLoader │ │ │ └── Preferences │ │ │ └── ColorMyCC.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── ColorMyCC.bundle │ │ │ ├── ColorMyCC │ │ │ ├── Info.plist │ │ │ └── Root.plist │ │ │ ├── ColorMyCC.dylib │ │ │ ├── arm64 │ │ │ ├── ColorMyCC.bundle │ │ │ │ ├── ColorMyCC │ │ │ │ └── ColorMyCC.dSYM │ │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ └── ColorMyCC │ │ │ ├── ColorMyCC.dylib │ │ │ ├── ColorMyCC.dylib.dSYM │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ └── ColorMyCC.dylib │ │ │ ├── Tweak.xm.202011c9.o │ │ │ └── cmcRootListController.m.c5c10a4a.o │ │ │ └── armv7 │ │ │ ├── ColorMyCC.bundle │ │ │ ├── ColorMyCC │ │ │ └── ColorMyCC.dSYM │ │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── ColorMyCC │ │ │ ├── ColorMyCC.dylib │ │ │ ├── ColorMyCC.dylib.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── ColorMyCC.dylib │ │ │ ├── Tweak.xm.mm │ │ │ └── cmcRootListController.m.a778b30d.o │ └── packages │ │ └── com.rustybalboa.colormycc-0.0.1 ├── ColorMyCC.plist ├── Makefile ├── Tweak.xm ├── colormycc.zip ├── colormycc │ ├── .DS_Store │ ├── Makefile │ ├── Resources │ │ ├── Info.plist │ │ └── Root.plist │ ├── cmcRootListController.h │ ├── cmcRootListController.m │ └── entry.plist ├── control ├── obj │ └── .DS_Store └── packages │ ├── com.rustybalboa.colormycc_0.0.1-1+debug_iphoneos-arm.deb │ ├── com.rustybalboa.colormycc_0.0.1-10+debug_iphoneos-arm.deb │ ├── com.rustybalboa.colormycc_0.0.1-11+debug_iphoneos-arm.deb │ ├── com.rustybalboa.colormycc_0.0.1-12+debug_iphoneos-arm.deb │ ├── com.rustybalboa.colormycc_0.0.1-13+debug_iphoneos-arm.deb │ ├── com.rustybalboa.colormycc_0.0.1-14+debug_iphoneos-arm.deb │ ├── com.rustybalboa.colormycc_0.0.1-15+debug_iphoneos-arm.deb │ ├── com.rustybalboa.colormycc_0.0.1-16+debug_iphoneos-arm.deb │ ├── com.rustybalboa.colormycc_0.0.1-17+debug_iphoneos-arm.deb │ ├── com.rustybalboa.colormycc_0.0.1-2+debug_iphoneos-arm.deb │ ├── com.rustybalboa.colormycc_0.0.1-3+debug_iphoneos-arm.deb │ ├── com.rustybalboa.colormycc_0.0.1-4+debug_iphoneos-arm.deb │ ├── com.rustybalboa.colormycc_0.0.1-5+debug_iphoneos-arm.deb │ ├── com.rustybalboa.colormycc_0.0.1-6+debug_iphoneos-arm.deb │ ├── com.rustybalboa.colormycc_0.0.1-7+debug_iphoneos-arm.deb │ ├── com.rustybalboa.colormycc_0.0.1-8+debug_iphoneos-arm.deb │ └── com.rustybalboa.colormycc_0.0.1-9+debug_iphoneos-arm.deb ├── colorswitcher ├── .theos │ ├── build_session │ └── obj │ │ └── debug │ │ ├── .stamp │ │ ├── arm64 │ │ └── Tweak.xm.mm │ │ └── armv7 │ │ └── Tweak.xm.mm ├── ColorSwitcher.plist ├── LICENSE.md ├── Makefile ├── README.md ├── Tweak.xm ├── colorswitcher.zip ├── colorswitcherprefs │ ├── CSPRootListController.h │ ├── CSPRootListController.m │ ├── Makefile │ ├── PFLibColorPickerExample.xm │ ├── Resources │ │ ├── Info.plist │ │ └── Root.plist │ └── entry.plist └── control ├── colorswitcher2 ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ ├── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ │ ├── ColorSwitcher.dylib │ │ │ │ └── ColorSwitcher.plist │ │ │ ├── PreferenceBundles │ │ │ └── colorswitcherPrefs.bundle │ │ │ │ ├── Info.plist │ │ │ │ ├── Root.plist │ │ │ │ ├── banner.png │ │ │ │ ├── colorswitcherPrefs │ │ │ │ ├── icon.png │ │ │ │ └── twitter.png │ │ │ └── PreferenceLoader │ │ │ └── Preferences │ │ │ └── colorswitcherPrefs.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ ├── .stamp │ │ ├── ColorSwitcher.dylib │ │ ├── arm64 │ │ │ ├── CSPRootListController.m.0c3ce61e.o │ │ │ ├── ColorSwitcher.dylib │ │ │ ├── Tweak.xm.de298c5e.o │ │ │ └── colorswitcherPrefs.bundle │ │ │ │ └── colorswitcherPrefs │ │ ├── armv7 │ │ │ ├── CSPRootListController.m.02157299.o │ │ │ ├── ColorSwitcher.dylib │ │ │ ├── Tweak.xm.a1ffef1b.o │ │ │ └── colorswitcherPrefs.bundle │ │ │ │ └── colorswitcherPrefs │ │ ├── colorswitcherPrefs.bundle │ │ │ ├── Info.plist │ │ │ ├── Root.plist │ │ │ ├── banner.png │ │ │ ├── colorswitcherPrefs │ │ │ ├── icon.png │ │ │ └── twitter.png │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── ColorSwitcher.dylib │ │ │ ├── arm64 │ │ │ ├── CSPRootListController.m.8168895d.o │ │ │ ├── ColorSwitcher.dylib │ │ │ ├── Tweak.xm.2dbd7538.o │ │ │ └── colorswitcherPrefs.bundle │ │ │ │ └── colorswitcherPrefs │ │ │ ├── armv7 │ │ │ ├── CSPRootListController.m.78574a2d.o │ │ │ ├── ColorSwitcher.dylib │ │ │ ├── Tweak.xm.e27d8301.o │ │ │ └── colorswitcherPrefs.bundle │ │ │ │ └── colorswitcherPrefs │ │ │ └── colorswitcherPrefs.bundle │ │ │ ├── Info.plist │ │ │ ├── Root.plist │ │ │ └── colorswitcherPrefs │ └── packages │ │ └── com.macs.colorswitcher-0.0.2 ├── ColorSwitcher.plist ├── LICENSE.md ├── Makefile ├── README.md ├── Tweak.xm ├── colorswitcher2.zip ├── colorswitcherprefs │ ├── CSPRootListController.h │ ├── CSPRootListController.m │ ├── Makefile │ ├── Resources │ │ ├── Info.plist │ │ ├── Root.plist │ │ ├── banner.png │ │ ├── icon.png │ │ └── twitter.png │ ├── entry.plist │ └── icon.png ├── control ├── libcolorpicker.h └── packages │ └── com.macs.colorswitcher_0.0.2-5+debug_iphoneos-arm.deb ├── colorswitcherUpdate ├── .theos │ ├── build_session │ └── obj │ │ └── debug │ │ ├── .stamp │ │ ├── arm64 │ │ ├── Tweak.xm.b12e877a.Td │ │ └── Tweak.xm.mm │ │ └── armv7 │ │ ├── Tweak.xm.b15b0ecf.Td │ │ └── Tweak.xm.mm ├── ColorSwitcher.plist ├── LICENSE.md ├── Makefile ├── README.md ├── Tweak.xm ├── colorswitcherUpdate.zip ├── colorswitcherprefs │ ├── CSPRootListController.h │ ├── CSPRootListController.m │ ├── Makefile │ ├── Resources │ │ ├── Info.plist │ │ ├── Root.plist │ │ ├── banner.png │ │ ├── icon.png │ │ └── twitter.png │ ├── entry.plist │ └── icon.png └── control ├── colorswitcherwithpref ├── .gitattributes ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ ├── Library │ │ │ ├── MobileSubstrate │ │ │ │ └── DynamicLibraries │ │ │ │ │ ├── ColorSwitcher.dylib │ │ │ │ │ └── ColorSwitcher.plist │ │ │ └── PreferenceLoader │ │ │ │ └── Preferences │ │ │ │ └── colorSwitcherPrefs.plist │ │ └── colorswitcherPrefs.bundle │ │ │ ├── Info.plist │ │ │ └── Root.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ ├── .stamp │ │ ├── ColorSwitcher.dylib │ │ ├── arm64 │ │ │ ├── ColorSwitcher.dylib │ │ │ └── Tweak.xm.c19274bc.o │ │ ├── armv7 │ │ │ ├── ColorSwitcher.dylib │ │ │ └── Tweak.xm.b2522108.o │ │ ├── colorswitcherPrefs.bundle │ │ │ ├── Info.plist │ │ │ └── Root.plist │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── ColorSwitcher.dylib │ │ │ ├── arm64 │ │ │ ├── Tweak.xm.2080c6ae.o │ │ │ ├── Tweak.xm.27505d76.o │ │ │ ├── Tweak.xm.5a2901b4.o │ │ │ └── Tweak.xm.6c64409d.o │ │ │ └── armv7 │ │ │ ├── Tweak.xm.6afd2944.o │ │ │ ├── Tweak.xm.c8e1ede6.o │ │ │ ├── Tweak.xm.ccb157a8.o │ │ │ └── Tweak.xm.e80a1645.o │ └── packages │ │ ├── com.auxilium.colorSwitcher-0.0.1 │ │ └── com.macs.colorswitcher-0.0.1 ├── ColorSwitcher.plist ├── LICENSE.md ├── Makefile ├── README.md ├── Tweak.xm ├── colorswitcherprefs │ ├── .DS_Store │ ├── Makefile │ ├── Resources │ │ ├── .DS_Store │ │ ├── Info.plist │ │ └── Root.plist │ ├── colorswitcherPrefs.h │ ├── colorswitcherPrefs.m │ └── entry.plist ├── colorswitcherwithpref.zip ├── control └── packages │ ├── com.macs.colorswitcher_0.0.1-1+debug_iphoneos-arm.deb │ └── com.macs.colorswitcher_0.0.1_iphoneos-arm.deb ├── ctfflag2 ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── CTFFlag2.dylib │ │ │ └── CTFFlag2.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ ├── .stamp │ │ ├── CTFFlag2.dylib │ │ ├── arm64 │ │ │ ├── CTFFlag2.dylib │ │ │ ├── CTFFlag2.dylib.dSYM │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ └── CTFFlag2.dylib │ │ │ ├── Tweak.xm.19daa00a.Td │ │ │ └── Tweak.xm.19daa00a.o │ │ ├── armv7 │ │ │ ├── CTFFlag2.dylib │ │ │ ├── CTFFlag2.dylib.dSYM │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ └── CTFFlag2.dylib │ │ │ ├── Tweak.xm.9a74b3b8.Td │ │ │ └── Tweak.xm.9a74b3b8.o │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── CTFFlag2.dylib │ │ │ ├── arm64 │ │ │ ├── CTFFlag2.dylib │ │ │ ├── CTFFlag2.dylib.dSYM │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ └── CTFFlag2.dylib │ │ │ ├── Tweak.xm.548ea9e3.Td │ │ │ ├── Tweak.xm.860c0e1d.Td │ │ │ ├── Tweak.xm.860c0e1d.o │ │ │ ├── Tweak.xm.e4175d0b.Td │ │ │ ├── Tweak.xm.e4175d0b.o │ │ │ └── Tweak.xm.mm │ │ │ └── armv7 │ │ │ ├── CTFFlag2.dylib │ │ │ ├── CTFFlag2.dylib.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── CTFFlag2.dylib │ │ │ ├── Tweak.xm.86e564bb.Td │ │ │ ├── Tweak.xm.86e564bb.o │ │ │ ├── Tweak.xm.92db8778.Td │ │ │ ├── Tweak.xm.92db8778.o │ │ │ ├── Tweak.xm.ffc236cb.Td │ │ │ └── Tweak.xm.mm │ └── packages │ │ ├── com.auxiliumctfs.ctfflag2-0.0.1 │ │ └── com.auxiliumctfs.ctfflag2-0.0.2 ├── CTFFlag2.plist ├── Makefile ├── Tweak.xm ├── control ├── ctfflag2.zip └── packages │ ├── Packages.bz2 │ ├── com.auxiliumctfs.ctfflag2_0.0.1-1+debug_iphoneos-arm.deb │ ├── com.auxiliumctfs.ctfflag2_0.0.1-2+debug_iphoneos-arm.deb │ ├── com.auxiliumctfs.ctfflag2_0.0.2-1+debug_iphoneos-arm.deb │ └── com.auxiliumctfs.ctfflag2_0.0.2_iphoneos-arm.deb ├── darklauncher ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ ├── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ │ ├── DarkSwitcher.dylib │ │ │ │ └── DarkSwitcher.plist │ │ │ ├── PreferenceBundles │ │ │ └── darkSwitcherPrefs.bundle │ │ │ │ ├── Info.plist │ │ │ │ ├── Root.plist │ │ │ │ └── darkSwitcherPrefs │ │ │ └── PreferenceLoader │ │ │ └── Preferences │ │ │ └── darkSwitcherPrefs.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── DarkSwitcher.dylib │ │ │ ├── arm64 │ │ │ ├── DarkSwitcher.dylib │ │ │ ├── DarkSwitcherPrefs.m.da3d87f4.o │ │ │ ├── Tweak.xm.21fc5b77.o │ │ │ └── darkSwitcherPrefs.bundle │ │ │ │ └── darkSwitcherPrefs │ │ │ ├── armv7 │ │ │ ├── DarkSwitcher.dylib │ │ │ ├── DarkSwitcherPrefs.m.1056f81d.o │ │ │ ├── Tweak.xm.6d3a4279.o │ │ │ └── darkSwitcherPrefs.bundle │ │ │ │ └── darkSwitcherPrefs │ │ │ └── darkSwitcherPrefs.bundle │ │ │ ├── Info.plist │ │ │ ├── Root.plist │ │ │ └── darkSwitcherPrefs │ └── packages │ │ └── com.tonyk7.darkswitcher-0.0.1 ├── DarkSwitcher.plist ├── Makefile ├── Tweak.xm ├── control ├── darklauncher.zip ├── darkswitcherprefs │ ├── .DS_Store │ ├── DarkSwitcherPrefs.h │ ├── DarkSwitcherPrefs.m │ ├── Makefile │ ├── Resources │ │ ├── .DS_Store │ │ ├── Info.plist │ │ └── Root.plist │ └── entry.plist └── packages │ ├── .DS_Store │ ├── com.tonyk7.darkswitcher_0.0.1-1+debug_iphoneos-arm.deb │ ├── com.tonyk7.darkswitcher_0.0.1-10+debug_iphoneos-arm.deb │ ├── com.tonyk7.darkswitcher_0.0.1-11+debug_iphoneos-arm.deb │ ├── com.tonyk7.darkswitcher_0.0.1-12+debug_iphoneos-arm.deb │ ├── com.tonyk7.darkswitcher_0.0.1-13+debug_iphoneos-arm.deb │ ├── com.tonyk7.darkswitcher_0.0.1-14+debug_iphoneos-arm.deb │ ├── com.tonyk7.darkswitcher_0.0.1-15+debug_iphoneos-arm.deb │ ├── com.tonyk7.darkswitcher_0.0.1-16+debug_iphoneos-arm.deb │ ├── com.tonyk7.darkswitcher_0.0.1-17+debug_iphoneos-arm.deb │ ├── com.tonyk7.darkswitcher_0.0.1-18+debug_iphoneos-arm.deb │ ├── com.tonyk7.darkswitcher_0.0.1-19+debug_iphoneos-arm.deb │ ├── com.tonyk7.darkswitcher_0.0.1-2+debug_iphoneos-arm.deb │ ├── com.tonyk7.darkswitcher_0.0.1-21+debug_iphoneos-arm.deb │ ├── com.tonyk7.darkswitcher_0.0.1-22+debug_iphoneos-arm.deb │ ├── com.tonyk7.darkswitcher_0.0.1-23+debug_iphoneos-arm.deb │ ├── com.tonyk7.darkswitcher_0.0.1-24+debug_iphoneos-arm.deb │ ├── com.tonyk7.darkswitcher_0.0.1-25+debug_iphoneos-arm.deb │ ├── com.tonyk7.darkswitcher_0.0.1-26+debug_iphoneos-arm.deb │ ├── com.tonyk7.darkswitcher_0.0.1-27+debug_iphoneos-arm.deb │ ├── com.tonyk7.darkswitcher_0.0.1-28+debug_iphoneos-arm.deb │ ├── com.tonyk7.darkswitcher_0.0.1-29+debug_iphoneos-arm.deb │ ├── com.tonyk7.darkswitcher_0.0.1-3+debug_iphoneos-arm.deb │ ├── com.tonyk7.darkswitcher_0.0.1-30+debug_iphoneos-arm.deb │ ├── com.tonyk7.darkswitcher_0.0.1-4+debug_iphoneos-arm.deb │ ├── com.tonyk7.darkswitcher_0.0.1-5+debug_iphoneos-arm.deb │ ├── com.tonyk7.darkswitcher_0.0.1-6+debug_iphoneos-arm.deb │ ├── com.tonyk7.darkswitcher_0.0.1-7+debug_iphoneos-arm.deb │ ├── com.tonyk7.darkswitcher_0.0.1-8+debug_iphoneos-arm.deb │ ├── com.tonyk7.darkswitcher_0.0.1-9+debug_iphoneos-arm.deb │ └── com.tonyk7.darkswitcher_0.0.1_iphoneos-arm.deb ├── darkswitcher ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ ├── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ │ ├── DarkSwitcher.dylib │ │ │ │ └── DarkSwitcher.plist │ │ │ ├── PreferenceBundles │ │ │ └── darkSwitcherPrefs.bundle │ │ │ │ ├── Info.plist │ │ │ │ ├── Root.plist │ │ │ │ └── darkSwitcherPrefs │ │ │ └── PreferenceLoader │ │ │ └── Preferences │ │ │ └── darkSwitcherPrefs.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── DarkSwitcher.dylib │ │ │ ├── arm64 │ │ │ ├── DarkSwitcher.dylib │ │ │ ├── DarkSwitcherPrefs.m.cbd6f8fe.o │ │ │ ├── Tweak.xm.d7d59f41.o │ │ │ └── darkSwitcherPrefs.bundle │ │ │ │ └── darkSwitcherPrefs │ │ │ ├── armv7 │ │ │ ├── DarkSwitcher.dylib │ │ │ ├── DarkSwitcherPrefs.m.c993e122.o │ │ │ ├── Tweak.xm.263d5562.o │ │ │ └── darkSwitcherPrefs.bundle │ │ │ │ └── darkSwitcherPrefs │ │ │ └── darkSwitcherPrefs.bundle │ │ │ ├── Info.plist │ │ │ ├── Root.plist │ │ │ └── darkSwitcherPrefs │ └── packages │ │ └── com.auxilium.darkswitcher-0.0.1 ├── DarkSwitcher.plist ├── Makefile ├── Tweak.xm ├── control ├── darkswitcher.zip ├── darkswitcherprefs │ ├── .DS_Store │ ├── DarkSwitcherPrefs.h │ ├── DarkSwitcherPrefs.m │ ├── Makefile │ ├── Resources │ │ ├── .DS_Store │ │ ├── Info.plist │ │ └── Root.plist │ └── entry.plist ├── packages │ └── com.auxilium.darkswitcher_0.0.1-1+debug_iphoneos-arm │ │ ├── Library │ │ ├── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ │ ├── DarkSwitcher.dylib │ │ │ │ └── DarkSwitcher.plist │ │ ├── PreferenceBundles │ │ │ └── darkSwitcherPrefs.bundle │ │ │ │ ├── Info.plist │ │ │ │ ├── Root.plist │ │ │ │ └── darkSwitcherPrefs │ │ └── PreferenceLoader │ │ │ └── Preferences │ │ │ └── darkSwitcherPrefs.plist │ │ └── data.tar └── redditrelease.txt ├── dusk ├── Dusk.plist ├── Makefile ├── Tweak.xm └── control ├── excitant-master ├── .gitignore ├── ALApplicationList.h ├── AppList.h ├── CommonDigest.h ├── Excitant.h ├── Excitant.xm ├── Makefile ├── README.md ├── TouchesRootListController.m ├── com.chilaxan.libexcitant_0.0.4_iphoneos-arm.deb ├── control ├── excitant.plist ├── excitant │ ├── EXCRootListController.h │ ├── EXCRootListController.m │ ├── HomeHijackController.m │ ├── Makefile │ ├── Resources │ │ ├── EzSwitchPrefs.plist │ │ ├── HomeHijack.plist │ │ ├── Info.plist │ │ ├── Root.plist │ │ ├── TapTapUtils.plist │ │ ├── Touches.plist │ │ ├── Volume.plist │ │ ├── banner.png │ │ ├── discord.png │ │ ├── icon.png │ │ ├── icon2.png │ │ ├── patreon.png │ │ ├── paypal.png │ │ ├── reddit.png │ │ └── twitter.png │ ├── SBRootListController.m │ ├── SwitchRootListController.m │ ├── TouchesRootListController.m │ ├── VolumeController.m │ └── entry.plist ├── libexcitant.h └── libexcitant │ ├── DEBIAN │ └── control │ └── Library │ └── MobileSubstrate │ └── DynamicLibraries │ ├── libexcitant.dylib │ └── libexcitant.plist ├── excitant ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── excitant.dylib │ │ │ └── excitant.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── arm64 │ │ │ ├── Tweak.xm.75511e46.o │ │ │ └── excitant.dylib │ │ │ ├── armv7 │ │ │ ├── Tweak.xm.42c480c0.o │ │ │ └── excitant.dylib │ │ │ └── excitant.dylib │ └── packages │ │ └── com.clarke1234.excitant-0.0.1 ├── Makefile ├── Tweak.xm ├── control ├── excitant.plist └── packages │ ├── com.clarke1234.excitant_0.0.1-1+debug_iphoneos-arm.deb │ └── com.clarke1234.excitant_0.0.1-2+debug_iphoneos-arm.deb ├── ezcolorswitcher ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── EzColorSwitcher.dylib │ │ │ └── EzColorSwitcher.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── EzColorSwitcher.dylib │ │ │ ├── arm64 │ │ │ ├── EzColorSwitcher.dylib │ │ │ └── Tweak.xm.d1d31c4b.o │ │ │ └── armv7 │ │ │ ├── EzColorSwitcher.dylib │ │ │ └── Tweak.xm.0b97d46c.o │ └── packages │ │ └── com.macs.ezcolorswitcher-0.0.1 ├── EzColorSwitcher.plist ├── Makefile ├── Tweak.xm ├── control └── packages │ └── com.macs.ezcolorswitcher_0.0.1-1+debug_iphoneos-arm.deb ├── ezcydiaopener ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── EzSpotiOpener.bundle │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ ├── .stamp │ │ ├── EzCydiaOpener.bundle │ │ │ ├── EzCydiaOpener │ │ │ ├── Icon.png │ │ │ ├── Icon2x.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ ├── arm64 │ │ │ ├── EzCydiaOpener.bundle │ │ │ │ └── EzCydiaOpener │ │ │ └── EzCydiaOpener.m.33484e23.o │ │ ├── armv7 │ │ │ ├── EzCydiaOpener.bundle │ │ │ │ └── EzCydiaOpener │ │ │ └── EzCydiaOpener.m.507a4eb4.o │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── EzCydiaOpener.bundle │ │ │ ├── EzCydiaOpener │ │ │ ├── Icon.png │ │ │ ├── Icon2x.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ │ ├── EzSpotiOpener.bundle │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Info.plist │ │ │ ├── arm64 │ │ │ ├── EzCydiaOpener.bundle │ │ │ │ └── EzCydiaOpener │ │ │ ├── EzCydiaOpener.m.0beb864b.o │ │ │ ├── EzCydiaOpener.m.19e7259d.o │ │ │ ├── EzCydiaOpener.m.64eb611a.o │ │ │ └── EzCydiaOpener.m.cb9f0f4c.o │ │ │ └── armv7 │ │ │ ├── EzCydiaOpener.bundle │ │ │ └── EzCydiaOpener │ │ │ ├── EzCydiaOpener.m.18585184.o │ │ │ ├── EzCydiaOpener.m.67abdad3.o │ │ │ ├── EzCydiaOpener.m.9f3ba7a0.o │ │ │ └── EzCydiaOpener.m.d2f554ff.o │ └── packages │ │ ├── com.clarke1234.ezcydiaopener-0.0.1 │ │ ├── com.clarke1234.ezcydiaopener-1.0 │ │ └── com.clarke1234.ezcydiaopener-1.1 ├── ControlCenterUIKit │ ├── CCUICAPackageDescription.h │ ├── CCUIContentModule-Protocol.h │ ├── CCUIContentModuleContentViewController-Protocol.h │ └── CCUIToggleModule.h ├── Copying ├── EzCydiaOpener.h ├── EzCydiaOpener.m ├── EzCydiaOpener.plist ├── Frameworks │ └── ControlCenterUIKit.tbd ├── Makefile ├── Making ├── Resources │ ├── Icon.png │ ├── Icon@2x.png │ └── Info.plist ├── Warning ├── control └── packages │ └── com.clarke1234.ezcydiaopener_1.1-8+debug_iphoneos-arm.deb ├── feaRM ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── feaRM.dylib │ │ │ └── feaRM.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── arm64 │ │ │ ├── Tweak.xm.fadca3f2.Td │ │ │ ├── Tweak.xm.fadca3f2.o │ │ │ ├── feaRM.dylib │ │ │ └── feaRM.dylib.dSYM │ │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── feaRM.dylib │ │ │ ├── armv7 │ │ │ ├── Tweak.xm.783de4e7.Td │ │ │ ├── Tweak.xm.783de4e7.o │ │ │ ├── feaRM.dylib │ │ │ └── feaRM.dylib.dSYM │ │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── feaRM.dylib │ │ │ └── feaRM.dylib │ └── packages │ │ └── com.auxiliumdev.fearm-0.0.1 ├── Makefile ├── Tweak.xm ├── control ├── feaRM.plist ├── feaRM.zip └── packages │ └── com.auxiliumdev.fearm_0.0.1-1+debug_iphoneos-arm.deb ├── fibonaccicam ├── FibonacciCam.plist ├── Makefile ├── Tweak.xm └── control ├── glowbadges ├── .gitmodules ├── GlowBadge.plist ├── LICENSE ├── Makefile ├── Preferences │ ├── GlowBadge.mm │ ├── HeaderCell.mm │ ├── LockedWhatsAppListController.mm │ ├── Makefile │ ├── Resources │ │ ├── GlowBadge.plist │ │ ├── GlowBadge.png │ │ ├── GlowBadge@2x.png │ │ ├── Info.plist │ │ ├── PayPal.png │ │ ├── PayPal@2x.png │ │ ├── Twitter.png │ │ ├── Twitter@2x.png │ │ ├── Website.png │ │ └── Website@2x.png │ ├── ThanksCell.mm │ ├── entry.plist │ ├── header │ │ ├── PSListController.h │ │ ├── PSSpecifier.h │ │ ├── PSTableCell.h │ │ └── PSViewController.h │ └── thanks │ │ ├── PSListController.h │ │ ├── PSSpecifier.h │ │ ├── PSTableCell.h │ │ ├── PSViewController.h │ │ ├── TTTAttributedLabel.h │ │ └── TTTAttributedLabel.m ├── README.md ├── Screenshots │ ├── Example.png │ ├── Settings1.png │ └── Settings2.png ├── Tweak.xm ├── control └── imgs │ ├── GlowBadageGray.png │ ├── GlowBadge.png │ ├── GlowBadge@2x.png │ └── GlowBadge@2x.psd ├── glownotifs ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── GlowNotifs.dylib │ │ │ └── GlowNotifs.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── GlowNotifs.dylib │ │ │ ├── arm64 │ │ │ ├── GlowNotifs.dylib │ │ │ └── Tweak.xm.1e22c5a0.o │ │ │ └── armv7 │ │ │ ├── GlowNotifs.dylib │ │ │ └── Tweak.xm.8047bcc4.o │ └── packages │ │ └── com.macs.glownotifs-0.0.1 ├── GlowNotifs.plist ├── Makefile ├── Tweak.xm ├── control └── packages │ ├── com.macs.glownotifs_0.0.1-1+debug_iphoneos-arm.deb │ └── com.macs.glownotifs_0.0.1-2+debug_iphoneos-arm.deb ├── hud12 ├── Hud12.plist ├── Makefile ├── Tweak.xm └── control ├── iffound ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── IfFound.dylib │ │ │ └── IfFound.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── IfFound.dylib │ │ │ ├── arm64 │ │ │ ├── IfFound.dylib │ │ │ ├── IfFound.dylib.dSYM │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ └── IfFound.dylib │ │ │ ├── Tweak.xm.e41cbc75.Td │ │ │ ├── Tweak.xm.e41cbc75.o │ │ │ └── Tweak.xm.mm │ │ │ └── armv7 │ │ │ ├── IfFound.dylib │ │ │ ├── IfFound.dylib.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── IfFound.dylib │ │ │ ├── Tweak.xm.834e40fd.Td │ │ │ ├── Tweak.xm.834e40fd.o │ │ │ └── Tweak.xm.mm │ └── packages │ │ └── com.auxilium.iffound-0.0.1 ├── IfFound.plist ├── Makefile ├── Tweak.xm ├── control └── packages │ ├── com.auxilium.iffound_0.0.1-1+debug_iphoneos-arm.deb │ ├── com.auxilium.iffound_0.0.1-2+debug_iphoneos-arm.deb │ ├── com.auxilium.iffound_0.0.1-3+debug_iphoneos-arm.deb │ ├── com.auxilium.iffound_0.0.1-4+debug_iphoneos-arm.deb │ └── com.auxilium.iffound_0.0.1-5+debug_iphoneos-arm.deb ├── jumplock ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── NestedFolders11.dylib │ │ │ └── NestedFolders11.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── JumpLock.dylib │ │ │ ├── NestedFolders11.dylib │ │ │ ├── arm64 │ │ │ ├── JumpLock.dylib │ │ │ ├── NestedFolders11.dylib │ │ │ ├── Tweak.xm.6956999d.o │ │ │ └── Tweak.xm.a89732d3.o │ │ │ └── armv7 │ │ │ ├── JumpLock.dylib │ │ │ ├── NestedFolders11.dylib │ │ │ ├── Tweak.xm.cd67b0b5.o │ │ │ └── Tweak.xm.d82ae937.o │ └── packages │ │ ├── com.macs.jumplock-0.0.1 │ │ └── com.macs.nestedfolders11-0.0.1 ├── Makefile ├── NestedFolders11.plist ├── Tweak.xm ├── control └── packages │ ├── com.macs.jumplock_0.0.1-1+debug_iphoneos-arm.deb │ ├── com.macs.nestedfolders11_0.0.1-1+debug_iphoneos-arm.deb │ ├── com.macs.nestedfolders11_0.0.1-2+debug_iphoneos-arm.deb │ └── com.macs.nestedfolders11_0.0.1-3+debug_iphoneos-arm.deb ├── littlecc ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── LittleCC.dylib │ │ │ └── LittleCC.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── LittleCC.dylib │ │ │ ├── arm64 │ │ │ ├── LittleCC.dylib │ │ │ └── Tweak.xm.57743a21.o │ │ │ └── armv7 │ │ │ ├── LittleCC.dylib │ │ │ └── Tweak.xm.55585795.o │ └── packages │ │ └── com.macs.littlecc-0.0.1 ├── LittleCC.plist ├── Makefile ├── Tweak.xm ├── control └── packages │ ├── Library │ └── MobileSubstrate │ │ └── DynamicLibraries │ │ ├── LittleCC.dylib │ │ └── LittleCC.plist │ ├── com.macs.littlecc_0.0.1-1+debug_iphoneos-arm.deb │ └── data.tar ├── nomorebanner ├── .theos │ ├── build_session │ └── obj │ │ └── debug │ │ ├── .stamp │ │ ├── NoMoreBanners.dylib │ │ ├── arm64 │ │ ├── NoMoreBanners.dylib │ │ └── Tweak.xm.7f4def60.o │ │ └── armv7 │ │ ├── NoMoreBanners.dylib │ │ └── Tweak.xm.f3538a5f.o ├── LICENSE.md ├── Makefile ├── NoMoreBanners.plist ├── Tweak.xm ├── control └── packages │ ├── com.macs.nomorebanner_0.0.1-1+debug_iphoneos-arm.deb │ ├── com.macs.nomorebanner_0.0.1-2+debug_iphoneos-arm.deb │ ├── com.macs.nomorebanner_0.0.1-3+debug_iphoneos-arm.deb │ ├── com.macs.nomorebanners_0.0.1-1+debug_iphoneos-arm.deb │ ├── com.macs.nomorebanners_0.0.2-1+debug_iphoneos-arm.deb │ ├── com.macs.nomorebanners_0.0.2-2+debug_iphoneos-arm.deb │ ├── com.macs.nomorebanners_0.0.2-3+debug_iphoneos-arm.deb │ └── com.macs.nomorebanners_0.0.2-4+debug_iphoneos-arm.deb ├── nosautikerror ├── .theos │ ├── build_session │ └── obj │ │ └── debug │ │ ├── .stamp │ │ ├── arm64 │ │ └── Tweak.xm.mm │ │ └── armv7 │ │ └── Tweak.xm.mm ├── Makefile ├── NoSaurikError.plist ├── README.md ├── Tweak.xm └── control ├── nowcolor ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── NowColor.dylib │ │ │ └── NowColor.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── NowColor.dylib │ │ │ ├── arm64 │ │ │ ├── NowColor.dylib │ │ │ └── Tweak.xm.mm │ │ │ └── armv7 │ │ │ ├── NowColor.dylib │ │ │ └── Tweak.xm.mm │ └── packages │ │ └── com.macs.nowcolor-0.0.1 ├── Makefile ├── NowColor.plist ├── Tweak.xm ├── control └── packages │ ├── com.macs.nowcolor_0.0.1-1+debug_iphoneos-arm.deb │ ├── com.macs.nowcolor_0.0.1-1+debug_iphoneos-arm │ ├── Library │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── NowColor.dylib │ │ │ └── NowColor.plist │ └── data.tar │ ├── com.macs.nowcolor_0.0.1-2+debug_iphoneos-arm.deb │ ├── com.macs.nowcolor_0.0.1-2+debug_iphoneos-arm │ ├── Library │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── NowColor.dylib │ │ │ └── NowColor.plist │ └── data.tar │ ├── com.macs.nowcolor_0.0.1-3+debug_iphoneos-arm.deb │ ├── com.macs.nowcolor_0.0.1-3+debug_iphoneos-arm │ ├── Library │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── NowColor.dylib │ │ │ └── NowColor.plist │ └── data.tar │ ├── com.macs.nowcolor_0.0.1-4+debug_iphoneos-arm.deb │ ├── com.macs.nowcolor_0.0.1-4+debug_iphoneos-arm │ ├── Library │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── NowColor.dylib │ │ │ └── NowColor.plist │ └── data.tar │ ├── com.macs.nowcolor_0.0.1-5+debug_iphoneos-arm.deb │ └── com.macs.nowcolor_0.0.1-5+debug_iphoneos-arm │ ├── Library │ └── MobileSubstrate │ │ └── DynamicLibraries │ │ ├── NowColor.dylib │ │ └── NowColor.plist │ └── data.tar ├── oopsieqr ├── Makefile ├── OopsieQR.plist ├── Tweak.xm └── control ├── perl5 ├── bin │ └── zipdetails ├── lib │ └── perl5 │ │ ├── Compress │ │ └── Zlib.pm │ │ ├── File │ │ └── GlobMapper.pm │ │ ├── IO │ │ ├── Compress │ │ │ ├── Adapter │ │ │ │ ├── Bzip2.pm │ │ │ │ ├── Deflate.pm │ │ │ │ ├── Identity.pm │ │ │ │ ├── Lzma.pm │ │ │ │ └── Xz.pm │ │ │ ├── Base.pm │ │ │ ├── Base │ │ │ │ └── Common.pm │ │ │ ├── Bzip2.pm │ │ │ ├── Deflate.pm │ │ │ ├── FAQ.pod │ │ │ ├── Gzip.pm │ │ │ ├── Gzip │ │ │ │ └── Constants.pm │ │ │ ├── Lzma.pm │ │ │ ├── RawDeflate.pm │ │ │ ├── Xz.pm │ │ │ ├── Zip.pm │ │ │ ├── Zip │ │ │ │ └── Constants.pm │ │ │ └── Zlib │ │ │ │ ├── Constants.pm │ │ │ │ └── Extra.pm │ │ └── Uncompress │ │ │ ├── Adapter │ │ │ ├── Bunzip2.pm │ │ │ ├── Identity.pm │ │ │ ├── Inflate.pm │ │ │ ├── UnLzma.pm │ │ │ └── UnXz.pm │ │ │ ├── AnyInflate.pm │ │ │ ├── AnyUncompress.pm │ │ │ ├── Base.pm │ │ │ ├── Bunzip2.pm │ │ │ ├── Gunzip.pm │ │ │ ├── Inflate.pm │ │ │ ├── RawInflate.pm │ │ │ ├── UnLzma.pm │ │ │ ├── UnXz.pm │ │ │ └── Unzip.pm │ │ ├── POD2 │ │ ├── DE │ │ │ └── local │ │ │ │ └── lib.pod │ │ └── PT_BR │ │ │ └── local │ │ │ └── lib.pod │ │ ├── lib │ │ └── core │ │ │ └── only.pm │ │ ├── local │ │ └── lib.pm │ │ └── x86_64-cygwin-threads-multi │ │ ├── Compress │ │ └── Raw │ │ │ ├── Bzip2.pm │ │ │ ├── Lzma.pm │ │ │ └── Zlib.pm │ │ ├── auto │ │ ├── Compress │ │ │ └── Raw │ │ │ │ ├── Bzip2 │ │ │ │ ├── .packlist │ │ │ │ └── Bzip2.dll │ │ │ │ ├── Lzma │ │ │ │ ├── .packlist │ │ │ │ ├── Lzma.dll │ │ │ │ └── autosplit.ix │ │ │ │ └── Zlib │ │ │ │ ├── .packlist │ │ │ │ └── Zlib.dll │ │ ├── IO │ │ │ └── Compress │ │ │ │ ├── .packlist │ │ │ │ └── Lzma │ │ │ │ └── .packlist │ │ └── local │ │ │ └── lib │ │ │ └── .packlist │ │ └── perllocal.pod └── man │ ├── man1 │ └── zipdetails.1 │ └── man3 │ ├── Compress.Raw.Bzip2.3pm │ ├── Compress.Raw.Lzma.3pm │ ├── Compress.Raw.Zlib.3pm │ ├── Compress.Zlib.3pm │ ├── File.GlobMapper.3pm │ ├── IO.Compress.Base.3pm │ ├── IO.Compress.Bzip2.3pm │ ├── IO.Compress.Deflate.3pm │ ├── IO.Compress.FAQ.3pm │ ├── IO.Compress.Gzip.3pm │ ├── IO.Compress.Lzma.3pm │ ├── IO.Compress.RawDeflate.3pm │ ├── IO.Compress.Xz.3pm │ ├── IO.Compress.Zip.3pm │ ├── IO.Uncompress.AnyInflate.3pm │ ├── IO.Uncompress.AnyUncompress.3pm │ ├── IO.Uncompress.Base.3pm │ ├── IO.Uncompress.Bunzip2.3pm │ ├── IO.Uncompress.Gunzip.3pm │ ├── IO.Uncompress.Inflate.3pm │ ├── IO.Uncompress.RawInflate.3pm │ ├── IO.Uncompress.UnLzma.3pm │ ├── IO.Uncompress.UnXz.3pm │ ├── IO.Uncompress.Unzip.3pm │ ├── POD2.DE.local.lib.3pm │ ├── POD2.PT_BR.local.lib.3pm │ ├── lib.core.only.3pm │ └── local.lib.3pm ├── presstosettings ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── PressToSettings.dylib │ │ │ └── PressToSettings.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── PressToSettings.dylib │ │ │ ├── arm64 │ │ │ ├── PressToSettings.dylib │ │ │ └── Tweak.xm.89fe01d9.o │ │ │ └── armv7 │ │ │ ├── PressToSettings.dylib │ │ │ └── Tweak.xm.4ed5e8e1.o │ └── packages │ │ └── com.macs.auxiliumdev.presstosettings-0.0.1 ├── Makefile ├── PressToSettings.plist ├── Tweak.xm ├── control └── packages │ ├── com.macs.auxiliumdev.presstosettings_0.0.1-1+debug_iphoneos-arm.deb │ └── com.macs.auxiliumdev.presstosettings_0.0.1-2+debug_iphoneos-arm.deb ├── prettyvid ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── PrettyVid.dylib │ │ │ └── PrettyVid.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── PrettyVid.dylib │ │ │ ├── arm64 │ │ │ ├── PrettyVid.dylib │ │ │ └── Tweak.xm.ee1d75db.o │ │ │ └── armv7 │ │ │ ├── PrettyVid.dylib │ │ │ └── Tweak.xm.d0fd8818.o │ └── packages │ │ └── com.macs.prettyvid-0.0.1 ├── Makefile ├── PrettyVid.plist ├── Tweak.xm ├── control └── packages │ ├── com.macs.prettyvid_0.0.1-1+debug_iphoneos-arm.deb │ ├── com.macs.prettyvid_0.0.1-10+debug_iphoneos-arm.deb │ ├── com.macs.prettyvid_0.0.1-2+debug_iphoneos-arm.deb │ ├── com.macs.prettyvid_0.0.1-3+debug_iphoneos-arm.deb │ ├── com.macs.prettyvid_0.0.1-4+debug_iphoneos-arm.deb │ ├── com.macs.prettyvid_0.0.1-5+debug_iphoneos-arm.deb │ ├── com.macs.prettyvid_0.0.1-6+debug_iphoneos-arm.deb │ ├── com.macs.prettyvid_0.0.1-6+debug_iphoneos-arm │ └── data.tar │ ├── com.macs.prettyvid_0.0.1-7+debug_iphoneos-arm.deb │ ├── com.macs.prettyvid_0.0.1-8+debug_iphoneos-arm.deb │ └── com.macs.prettyvid_0.0.1-9+debug_iphoneos-arm.deb ├── readit ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── ReadIt.dylib │ │ │ └── ReadIt.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── ReadIt.dylib │ │ │ ├── arm64 │ │ │ ├── ReadIt.dylib │ │ │ └── Tweak.xm.94f2aa0d.o │ │ │ └── armv7 │ │ │ ├── ReadIt.dylib │ │ │ └── Tweak.xm.c5f917ba.o │ └── packages │ │ └── com.auxilium.readit-0.0.1 ├── Makefile ├── ReadIt.plist ├── Resources │ └── oofsoundeffect.mp3 ├── Tweak.xm ├── control └── packages │ ├── com.auxilium.readit_0.0.1-1+debug_iphoneos-arm.deb │ ├── com.auxilium.readit_0.0.1-2+debug_iphoneos-arm.deb │ ├── com.auxilium.readit_0.0.1-3+debug_iphoneos-arm.deb │ ├── com.auxilium.readit_0.0.1-4+debug_iphoneos-arm.deb │ ├── com.auxilium.readit_0.0.1-5+debug_iphoneos-arm.deb │ └── com.auxilium.readit_0.0.1-5+debug_iphoneos-arm │ ├── Library │ └── MobileSubstrate │ │ └── DynamicLibraries │ │ ├── ReadIt.dylib │ │ └── ReadIt.plist │ └── data.tar ├── remindhome ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ ├── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ │ ├── RemindHome.dylib │ │ │ │ └── RemindHome.plist │ │ │ ├── PreferenceBundles │ │ │ └── remindhomeprefs.bundle │ │ │ │ ├── Info.plist │ │ │ │ ├── Root.plist │ │ │ │ └── remindhomeprefs │ │ │ └── PreferenceLoader │ │ │ └── Preferences │ │ │ └── remindhomeprefs.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── RemindHome.dylib │ │ │ ├── arm64 │ │ │ ├── RHPRootListController.m.b6a33146.o │ │ │ ├── RemindHome.dylib │ │ │ ├── Tweak.xm.12fef8dc.o │ │ │ └── remindhomeprefs.bundle │ │ │ │ └── remindhomeprefs │ │ │ ├── armv7 │ │ │ ├── RHPRootListController.m.a353e425.o │ │ │ ├── RemindHome.dylib │ │ │ ├── Tweak.xm.c9c9a066.o │ │ │ └── remindhomeprefs.bundle │ │ │ │ └── remindhomeprefs │ │ │ └── remindhomeprefs.bundle │ │ │ ├── Info.plist │ │ │ ├── Root.plist │ │ │ └── remindhomeprefs │ └── packages │ │ ├── com.macs.lockstock-0.0.1 │ │ └── com.macs.remindhome-1.0 ├── Makefile ├── RemindHome.plist ├── Tweak.xm ├── control ├── libcolorpicker.h ├── packages │ ├── com.macs.lockstock_0.0.1-1+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-10+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-11+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-12+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-13+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-14+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-15+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-16+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-17+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-18+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-19+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-2+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-20+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-21+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-22+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-23+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-24+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-25+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-26+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-27+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-28+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-29+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-3+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-30+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-31+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-32+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-33+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-34+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-35+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-4+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-5+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-6+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-7+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-8+debug_iphoneos-arm.deb │ ├── com.macs.lockstock_0.0.1-9+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-1+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-10+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-100+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-101+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-102+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-103+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-104+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-105+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-106+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-107+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-108+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-109+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-11+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-110+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-111+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-112+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-113+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-114+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-115+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-116+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-117+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-118+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-119+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-12+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-120+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-121+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-122+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-13+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-14+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-15+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-16+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-17+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-18+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-19+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-2+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-20+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-21+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-22+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-23+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-24+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-25+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-26+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-27+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-28+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-29+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-3+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-30+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-31+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-32+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-33+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-34+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-35+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-36+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-37+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-38+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-39+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-4+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-40+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-41+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-42+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-43+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-44+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-45+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-46+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-47+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-48+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-49+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-5+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-50+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-51+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-52+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-53+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-54+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-55+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-56+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-57+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-58+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-59+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-6+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-60+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-61+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-62+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-63+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-64+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-65+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-66+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-67+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-68+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-69+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-7+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-70+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-71+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-72+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-73+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-74+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-75+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-76+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-77+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-78+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-79+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-8+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-80+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-81+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-82+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-83+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-84+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-85+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-86+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-87+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-88+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-89+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-9+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-90+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-91+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-92+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-93+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-94+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-95+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-96+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-97+debug_iphoneos-arm.deb │ ├── com.macs.remindhome_1.0-98+debug_iphoneos-arm.deb │ └── com.macs.remindhome_1.0-99+debug_iphoneos-arm.deb ├── remindhome.zip └── remindhomeprefs │ ├── Makefile │ ├── RHPRootListController.h │ ├── RHPRootListController.m │ ├── Resources │ ├── Info.plist │ └── Root.plist │ └── entry.plist ├── santanderbypass ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── SantanderBypass.dylib │ │ │ └── SantanderBypass.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── SantanderBypass.dylib │ │ │ ├── arm64 │ │ │ ├── SantanderBypass.dylib │ │ │ └── Tweak.xm.40e4489a.o │ │ │ └── armv7 │ │ │ ├── SantanderBypass.dylib │ │ │ └── Tweak.xm.031f6b16.o │ └── packages │ │ └── com.macs.santanderbypass-0.0.1 ├── Makefile ├── SantanderBypass.plist ├── Tweak.xm ├── control └── packages │ └── com.macs.santanderbypass_0.0.1-1+debug_iphoneos-arm.deb ├── shortlookshit ├── insta │ └── ShortLook-Instagram-master │ │ ├── .gitignore │ │ ├── DDNotificationInstagramContactPhotoProvider.h │ │ ├── DDNotificationInstagramContactPhotoProvider.m │ │ ├── Info.plist │ │ ├── Makefile │ │ ├── README.md │ │ ├── ShortLook-API.h │ │ └── control └── twitter │ └── ShortLook-Twitter-master │ ├── .gitignore │ ├── DDNotificationTwitterContactPhotoProvider.h │ ├── DDNotificationTwitterContactPhotoProvider.m │ ├── Info.plist │ ├── Makefile │ ├── README.md │ ├── ShortLook-API.h │ └── control ├── sleekmessages ├── .theos │ ├── build_session │ └── obj │ │ └── debug │ │ ├── .stamp │ │ ├── arm64 │ │ └── Tweak.xm.78a01807.Td │ │ └── armv7 │ │ └── Tweak.xm.7cb7b98c.Td ├── Makefile ├── SleekMessages.plist ├── Tweak.xm └── control ├── sleekmusicls ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── SleekMusicLS.dylib │ │ │ └── SleekMusicLS.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── SleekMusicLS.dylib │ │ │ ├── arm64 │ │ │ ├── SleekMusicLS.dylib │ │ │ └── Tweak.xm.2ec6e319.o │ │ │ └── armv7 │ │ │ └── Tweak.xm.f3f7e0ab.o │ └── packages │ │ └── com.macs.auxilium.sleekmusicls-0.0.1 ├── MTPlatterView.h ├── Makefile ├── SleekMusicLS.plist ├── Tweak.xm ├── control └── packages │ ├── com.macs.auxilium.sleekmusicls_0.0.1-1+debug_iphoneos-arm.deb │ ├── com.macs.auxilium.sleekmusicls_0.0.1-2+debug_iphoneos-arm.deb │ ├── com.macs.auxilium.sleekmusicls_0.0.1-3+debug_iphoneos-arm.deb │ ├── com.macs.auxilium.sleekmusicls_0.0.1-4+debug_iphoneos-arm.deb │ ├── com.macs.auxilium.sleekmusicls_0.0.1-5+debug_iphoneos-arm.deb │ ├── com.macs.auxilium.sleekmusicls_0.0.1-6+debug_iphoneos-arm.deb │ └── com.macs.auxilium.sleekmusicls_0.0.1-7+debug_iphoneos-arm.deb ├── sleeknotifs ├── .theos │ ├── build_session │ └── obj │ │ └── debug │ │ ├── .stamp │ │ ├── arm64 │ │ └── Tweak.xm.mm │ │ └── armv7 │ │ └── Tweak.xm.mm ├── Makefile ├── SleekNotifs.plist ├── Tweak.xm └── control ├── slices ├── .theos │ ├── build_session │ └── obj │ │ ├── Model │ │ ├── .stamp │ │ └── SSKeychain │ │ │ └── .stamp │ │ └── debug │ │ ├── .stamp │ │ ├── Model │ │ ├── .stamp │ │ ├── AppGroupSlicer.mm.001e537f.o │ │ ├── AppGroupSlicer.mm.b2d490f6.o │ │ ├── Expetelek │ │ │ └── .stamp │ │ ├── FolderMigrator.mm.b2d490f6.o │ │ ├── GameCenterAccountManager.mm.001e537f.o │ │ ├── GameCenterAccountManager.mm.b2d490f6.o │ │ ├── RawSlicer.mm.b2d490f6.o │ │ ├── SSKeychain │ │ │ ├── .stamp │ │ │ ├── SSKeychain.m.001e537f.o │ │ │ └── SSKeychain.m.b2d490f6.o │ │ ├── SliceSetting.mm.b2d490f6.o │ │ └── Slicer.mm.b2d490f6.o │ │ ├── Slices.dylib │ │ ├── SlicesPreferences.bundle │ │ ├── Info.plist │ │ ├── SlicesPreferences.plist │ │ ├── SlicesPreferences.png │ │ ├── SlicesPreferences@2x.png │ │ ├── heart.png │ │ ├── heart@2x.png │ │ ├── heart~ipad.png │ │ ├── heart~ipad@2x.png │ │ ├── twitter.png │ │ └── twitter@2x.png │ │ ├── arm64 │ │ ├── Model │ │ │ ├── AppGroupSlicer.mm.f81c74a9.o │ │ │ ├── Expetelek │ │ │ │ └── Expetelek.mm.f81c74a9.o │ │ │ ├── FolderMigrator.mm.f81c74a9.o │ │ │ ├── GameCenterAccountManager.mm.f81c74a9.o │ │ │ ├── RawSlicer.mm.f81c74a9.o │ │ │ ├── SSKeychain │ │ │ │ └── SSKeychain.m.f81c74a9.o │ │ │ ├── SliceSetting.mm.f81c74a9.o │ │ │ └── Slicer.mm.f81c74a9.o │ │ ├── Slices.dylib │ │ └── Tweak.xm.f81c74a9.o │ │ └── armv7s │ │ ├── Model │ │ ├── AppGroupSlicer.mm.2f81a1c2.o │ │ ├── Expetelek │ │ │ └── Expetelek.mm.2f81a1c2.o │ │ ├── FolderMigrator.mm.2f81a1c2.o │ │ ├── GameCenterAccountManager.mm.2f81a1c2.o │ │ ├── RawSlicer.mm.2f81a1c2.o │ │ ├── SSKeychain │ │ │ └── SSKeychain.m.2f81a1c2.o │ │ ├── SliceSetting.mm.2f81a1c2.o │ │ └── Slicer.mm.2f81a1c2.o │ │ ├── Slices.dylib │ │ └── Tweak.xm.2f81a1c2.o ├── Headers │ ├── GameCenterHeaders.h │ ├── LocalizationKeys.h │ └── SpringBoardHeaders.h ├── Makefile ├── Model │ ├── AppGroupSlicer.h │ ├── AppGroupSlicer.mm │ ├── Expetelek │ │ ├── Expetelek.h │ │ └── Expetelek.mm │ ├── FolderMigrator.h │ ├── FolderMigrator.mm │ ├── GameCenterAccountManager.h │ ├── GameCenterAccountManager.mm │ ├── RawSlicer.h │ ├── RawSlicer.mm │ ├── SSKeychain │ │ ├── SSKeychain.h │ │ └── SSKeychain.m │ ├── SliceSetting.h │ ├── SliceSetting.mm │ ├── Slicer.h │ └── Slicer.mm ├── Slices.plist ├── Tweak.xm ├── control ├── layout │ └── Library │ │ └── Application Support │ │ └── Slices │ │ └── Slices.bundle │ │ ├── de.lproj │ │ └── Slices.strings │ │ ├── en.lproj │ │ └── Slices.strings │ │ ├── es.lproj │ │ └── Slices.strings │ │ ├── fr.lproj │ │ └── Slices.strings │ │ └── pt.lproj │ │ └── Slices.strings ├── slices.sublime-project ├── slices.sublime-workspace └── slicespreferences │ ├── GameCenterController.h │ ├── GameCenterController.mm │ ├── Makefile │ ├── Resources │ ├── Excitant.png │ ├── ExcitantIcon.png │ ├── EzLauncher.png │ ├── EzLauncherIcon.png │ ├── EzSwitchBanner.png │ ├── EzSwitchLogo.psd │ ├── EzSwitchPreferences@2x.png │ ├── EzSwitcher.psd │ ├── Header133.png │ ├── Header133.psd │ ├── HomeHijack.zip │ ├── HomeHijackBanner.png │ ├── Info.plist │ ├── Logo.psd │ ├── MSBanner.png │ ├── MSPreferences.png │ ├── MSPreferences@2x.png │ ├── MakeHeight133.zip │ ├── MidnightsBannerandLogo.zip │ ├── MidnightsHeader.png │ ├── MidnightsLogo.png │ ├── Resources.zip │ ├── SleepAnywhere.png │ ├── SlicesPreferences.plist │ ├── SlicesPreferences.png │ ├── SlicesPreferences@2x.png │ ├── header.png │ ├── heart.png │ ├── heart@2x.png │ ├── heart~ipad.png │ ├── heart~ipad@2x.png │ ├── homehijack.png │ ├── patrein.png │ ├── patreon.png │ ├── paypal.png │ ├── pls work.png │ ├── twitter.png │ ├── twitter.psd │ └── twitter@2x.png │ ├── SliceDetailController.h │ ├── SliceDetailController.mm │ ├── SlicesAppController.mm │ ├── SlicesAppDetailController.h │ ├── SlicesAppDetailController.mm │ ├── SlicesEditableTableCell.h │ ├── SlicesEditableTableCell.mm │ ├── SlicesPreferencesListController.mm │ └── entry.plist ├── slidepercent ├── Makefile ├── Slidepercent.plist ├── Tweak.xm └── control ├── statusnotifications ├── Makefile ├── SNTBannerNotificationViewController.h ├── SNTBannerNotificationViewController.m ├── SNTNotificationRequestController.h ├── SNTNotificationRequestController.m ├── StatusNotificationController.h ├── StatusNotifications.plist ├── StatusNotificationsController.m ├── Tweak.xm ├── control └── layout │ └── Library │ └── Application Support │ └── StatusNotifications │ └── filler.png ├── sweetscreen ├── .theos │ ├── build_session │ └── obj │ │ └── debug │ │ ├── .stamp │ │ ├── arm64 │ │ ├── Tweak.xm.fd7c02ca.Td │ │ └── Tweak.xm.mm │ │ └── armv7 │ │ ├── Tweak.xm.31f0ca82.Td │ │ └── Tweak.xm.mm ├── Makefile ├── SweetScreen.plist ├── Tweak.xm └── control ├── switchease ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── Switchease.dylib │ │ │ └── Switchease.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── Switchease.dylib │ │ │ ├── arm64 │ │ │ ├── Switchease.dylib │ │ │ ├── Switchease.dylib.dSYM │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ └── Switchease.dylib │ │ │ ├── Tweak.xm.1549a57c.Td │ │ │ ├── Tweak.xm.1549a57c.o │ │ │ └── Tweak.xm.mm │ │ │ └── armv7 │ │ │ ├── Switchease.dylib │ │ │ ├── Switchease.dylib.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── Switchease.dylib │ │ │ ├── Tweak.xm.3faa1fa7.Td │ │ │ ├── Tweak.xm.3faa1fa7.o │ │ │ └── Tweak.xm.mm │ └── packages │ │ └── com.macs.switchease-0.0.1 ├── Makefile ├── Switchease.plist ├── Tweak.xm ├── control └── packages │ ├── com.macs.switchease_0.0.1-1+debug_iphoneos-arm.deb │ ├── com.macs.switchease_0.0.1-2+debug_iphoneos-arm.deb │ └── com.macs.switchease_0.0.1-3+debug_iphoneos-arm.deb ├── switcher ├── .theos │ ├── build_session │ └── obj │ │ └── debug │ │ ├── .stamp │ │ ├── arm64 │ │ ├── Tweak.xm.414353a7.Td │ │ ├── Tweak.xm.42ba9a35.Td │ │ ├── Tweak.xm.42ba9a35.o │ │ ├── Tweak.xm.b6b1bb97.Td │ │ ├── Tweak.xm.d5663ddc.Td │ │ ├── Tweak.xm.d5663ddc.o │ │ ├── Tweak.xm.e254ac08.Td │ │ └── Tweak.xm.mm │ │ └── armv7 │ │ ├── Tweak.xm.0c2f5865.Td │ │ ├── Tweak.xm.0c2f5865.o │ │ ├── Tweak.xm.49d2b502.Td │ │ ├── Tweak.xm.49d2b502.o │ │ ├── Tweak.xm.802b861f.Td │ │ ├── Tweak.xm.9fedaf07.Td │ │ ├── Tweak.xm.e0ad0622.Td │ │ └── Tweak.xm.mm ├── Makefile ├── Switcher.plist ├── Tweak.xm ├── control └── switcherprefs │ ├── Makefile │ ├── Resources │ ├── Info.plist │ └── Root.plist │ ├── SPBRootListController.h │ ├── SPBRootListController.m │ └── entry.plist ├── switcherview11 ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── SwitcherView11.dylib │ │ │ └── SwitcherView11.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── SwitcherView11.dylib │ │ │ ├── arm64 │ │ │ ├── SwitcherView11.dylib │ │ │ ├── SwitcherView11.dylib.dSYM │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ └── SwitcherView11.dylib │ │ │ ├── Tweak.xm.e09bf8d2.Td │ │ │ └── Tweak.xm.e09bf8d2.o │ │ │ └── armv7 │ │ │ ├── SwitcherView11.dylib │ │ │ ├── SwitcherView11.dylib.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── SwitcherView11.dylib │ │ │ ├── Tweak.xm.d97909cb.Td │ │ │ └── Tweak.xm.d97909cb.o │ └── packages │ │ └── com.macs.switcherview11-0.0.1 ├── Makefile ├── SwitcherView11.plist ├── Tweak.xm ├── control └── packages │ ├── com.macs.switcherview11_0.0.1-1+debug_iphoneos-arm.deb │ ├── com.macs.switcherview11_0.0.1-2+debug_iphoneos-arm.deb │ └── com.macs.switcherview11_0.0.1-3+debug_iphoneos-arm.deb ├── taptaputils ├── Makefile ├── TapTapUtils.plist ├── Tweak.xm ├── control ├── packages │ ├── com.clarke1234.taptaputils_1.0-1_iphoneos-arm.deb │ ├── com.clarke1234.taptaputils_1.0-2_iphoneos-arm.deb │ ├── com.clarke1234.taptaputils_1.0-3_iphoneos-arm.deb │ ├── com.clarke1234.taptaputils_1.1-1_iphoneos-arm.deb │ ├── com.clarke1234.taptaputils_1.1-2_iphoneos-arm.deb │ ├── com.clarke1234.taptaputils_1.1-3_iphoneos-arm.deb │ ├── com.clarke1234.taptaputils_1.1-4_iphoneos-arm.deb │ ├── com.clarke1234.taptaputils_1.1-5_iphoneos-arm.deb │ ├── com.clarke1234.taptaputils_1.2-10+debug_iphoneos-arm.deb │ ├── com.clarke1234.taptaputils_1.2-11+debug_iphoneos-arm.deb │ ├── com.clarke1234.taptaputils_1.2-2+debug_iphoneos-arm.deb │ ├── com.clarke1234.taptaputils_1.2-3+debug_iphoneos-arm.deb │ ├── com.clarke1234.taptaputils_1.2-4+debug_iphoneos-arm.deb │ ├── com.clarke1234.taptaputils_1.2-5+debug_iphoneos-arm.deb │ ├── com.clarke1234.taptaputils_1.2-6+debug_iphoneos-arm.deb │ ├── com.clarke1234.taptaputils_1.2-7+debug_iphoneos-arm.deb │ ├── com.clarke1234.taptaputils_1.2-8+debug_iphoneos-arm.deb │ ├── com.clarke1234.taptaputils_1.2-9+debug_iphoneos-arm.deb │ ├── com.clarke1234.taptaputils_2.0-1+debug_iphoneos-arm.deb │ ├── com.clarke1234.taptaputils_2.0-2+debug_iphoneos-arm.deb │ ├── com.clarke1234.taptaputils_2.0-3+debug_iphoneos-arm.deb │ ├── com.clarke1234.taptaputils_2.0-4+debug_iphoneos-arm.deb │ ├── com.clarke1234.taptaputils_2.0-5+debug_iphoneos-arm.deb │ ├── com.clarke1234.taptaputils_2.0-6+debug_iphoneos-arm.deb │ ├── com.clarke1234.taptaputils_2.0-7_iphoneos-arm.deb │ ├── com.clarke1234.taptaputils_2.1-1+debug_iphoneos-arm.deb │ ├── com.clarke1234.taptaputils_2.1-1_iphoneos-arm.deb │ └── com.clarke1234.taptaputils_2.1-2_iphoneos-arm.deb └── taptaputilsprefs │ ├── Makefile │ ├── Resources │ ├── Info.plist │ ├── Root.plist │ ├── reddit.png │ └── twitter.png │ ├── TTXRootListController.h │ ├── TTXRootListController.m │ └── entry.plist ├── test3 ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── test3.dylib │ │ │ └── test3.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── arm64 │ │ │ ├── Tweak.xm.d23e02f5.o │ │ │ └── test3.dylib │ │ │ ├── armv7 │ │ │ ├── Tweak.xm.dd08d819.o │ │ │ └── test3.dylib │ │ │ └── test3.dylib │ └── packages │ │ └── test3-0.0.1 ├── Makefile ├── Tweak.xm ├── control ├── packages │ └── test3_0.0.1-1+debug_iphoneos-arm.deb └── test3.plist ├── testtweak ├── .theos │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── TestTweak.dylib │ │ │ ├── arm64 │ │ │ ├── TestTweak.dylib │ │ │ └── Tweak.xm.dc9e33a4.o │ │ │ └── armv7 │ │ │ ├── TestTweak.dylib │ │ │ └── Tweak.xm.96439d36.o │ └── packages │ │ └── com.yourcompany.testtweak-0.0.1 ├── Makefile ├── TestTweak.plist ├── Tweak.xm ├── control └── packages │ └── com.yourcompany.testtweak_0.0.1-1+debug_iphoneos-arm.deb ├── toggleanywhere ├── .theos │ ├── build_session │ └── obj │ │ └── debug │ │ ├── .stamp │ │ ├── arm64 │ │ ├── Tweak.xm.15e95bc8.Td │ │ ├── Tweak.xm.6fd90ec3.Td │ │ ├── Tweak.xm.c1ee1feb.Td │ │ └── Tweak.xm.mm │ │ └── armv7 │ │ ├── Tweak.xm.1f351fad.Td │ │ ├── Tweak.xm.7ad56a7d.Td │ │ ├── Tweak.xm.eb55cb94.Td │ │ └── Tweak.xm.mm ├── Makefile ├── ToggleAnywhere.plist ├── Tweak.xm └── control ├── unplugged ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── UnPlugged.dylib │ │ │ └── UnPlugged.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── UnPlugged.dylib │ │ │ ├── arm64 │ │ │ ├── Tweak.xm.mm │ │ │ └── UnPlugged.dylib │ │ │ └── armv7 │ │ │ ├── Tweak.xm.mm │ │ │ └── UnPlugged.dylib │ └── packages │ │ └── com.macs.unplugged-0.0.1 ├── Makefile ├── Tweak.xm ├── UnPlugged.plist ├── control └── packages │ ├── com.macs.unplugged_0.0.1-1+debug_iphoneos-arm.deb │ ├── com.macs.unplugged_0.0.1-1+debug_iphoneos-arm │ ├── Library │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── UnPlugged.dylib │ │ │ └── UnPlugged.plist │ └── data.tar │ ├── com.macs.unplugged_0.0.1-2+debug_iphoneos-arm.deb │ ├── com.macs.unplugged_0.0.1-3+debug_iphoneos-arm.deb │ ├── com.macs.unplugged_0.0.1-4+debug_iphoneos-arm.deb │ ├── com.macs.unplugged_0.0.1-5+debug_iphoneos-arm.deb │ └── com.macs.unplugged_0.0.1-6+debug_iphoneos-arm.deb ├── welcomelock ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── WelcomeLock.dylib │ │ │ └── WelcomeLock.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── WelcomeLock.dylib │ │ │ ├── arm64 │ │ │ ├── Tweak.xm.dab7f2e6.o │ │ │ └── WelcomeLock.dylib │ │ │ └── armv7 │ │ │ ├── Tweak.xm.bef0058c.o │ │ │ └── WelcomeLock.dylib │ └── packages │ │ └── com.macs.welcomelock-0.0.1 ├── Makefile ├── Tweak.xm ├── WelcomeLock.plist ├── control └── packages │ ├── com.macs.welcomelock_0.0.1-1+debug_iphoneos-arm.deb │ ├── com.macs.welcomelock_0.0.1-2+debug_iphoneos-arm.deb │ ├── com.macs.welcomelock_0.0.1-3+debug_iphoneos-arm.deb │ ├── com.macs.welcomelock_0.0.1-4+debug_iphoneos-arm.deb │ └── com.macs.welcomelock_0.0.1-5+debug_iphoneos-arm.deb └── wetunlock ├── Makefile ├── Tweak.xm ├── WetUnlock.plist └── control /Archive/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/Archive/.DS_Store -------------------------------------------------------------------------------- /Archive/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Archive/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Archive/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/Archive/Makefile -------------------------------------------------------------------------------- /Archive/Motus.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/Archive/Motus.plist -------------------------------------------------------------------------------- /Archive/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/Archive/Tweak.xm -------------------------------------------------------------------------------- /Archive/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/Archive/control -------------------------------------------------------------------------------- /Archive/prefs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/Archive/prefs/.DS_Store -------------------------------------------------------------------------------- /Archive/prefs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/Archive/prefs/Makefile -------------------------------------------------------------------------------- /Archive/prefs/Resources/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/Archive/prefs/Resources/.DS_Store -------------------------------------------------------------------------------- /Archive/prefs/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/Archive/prefs/Resources/Info.plist -------------------------------------------------------------------------------- /Archive/prefs/Resources/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/Archive/prefs/Resources/Root.plist -------------------------------------------------------------------------------- /Archive/prefs/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/Archive/prefs/entry.plist -------------------------------------------------------------------------------- /CIL/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/CIL/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /CIL/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CIL/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CIL/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.tonyk7.confirminstalike_0.0.3-1+debug_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /CIL/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CIL/.theos/packages/com.tonyk7.confirminstalike-0.0.2: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /CIL/.theos/packages/com.tonyk7.confirminstalike-0.0.3: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /CIL/CIL.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/CIL/CIL.zip -------------------------------------------------------------------------------- /CIL/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/CIL/Makefile -------------------------------------------------------------------------------- /CIL/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/CIL/Tweak.xm -------------------------------------------------------------------------------- /CIL/confirmInstaLike.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/CIL/confirmInstaLike.plist -------------------------------------------------------------------------------- /CIL/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/CIL/control -------------------------------------------------------------------------------- /CIL/headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/CIL/headers.h -------------------------------------------------------------------------------- /EzAprilFools/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzAprilFools/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzAprilFools/EzRespringModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzAprilFools/EzRespringModule.h -------------------------------------------------------------------------------- /EzAprilFools/EzRespringModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzAprilFools/EzRespringModule.m -------------------------------------------------------------------------------- /EzAprilFools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzAprilFools/Makefile -------------------------------------------------------------------------------- /EzAprilFools/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzAprilFools/Resources/Icon.png -------------------------------------------------------------------------------- /EzAprilFools/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzAprilFools/Resources/Icon@2x.png -------------------------------------------------------------------------------- /EzAprilFools/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzAprilFools/Resources/Info.plist -------------------------------------------------------------------------------- /EzAprilFools/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzAprilFools/control -------------------------------------------------------------------------------- /EzAprilFools/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzAprilFools/postinst -------------------------------------------------------------------------------- /EzApt/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzApt/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /EzApt/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzApt/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzApt/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.m4cs.aptget_0.0.1-2+debug_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /EzApt/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzApt/.theos/packages/com.m4cs.aptget-0.0.1: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /EzApt/EzAPTModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzApt/EzAPTModule.h -------------------------------------------------------------------------------- /EzApt/EzAPTModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzApt/EzAPTModule.m -------------------------------------------------------------------------------- /EzApt/EzApt.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzApt/EzApt.zip -------------------------------------------------------------------------------- /EzApt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzApt/Makefile -------------------------------------------------------------------------------- /EzApt/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzApt/Resources/Icon.png -------------------------------------------------------------------------------- /EzApt/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzApt/Resources/Icon@2x.png -------------------------------------------------------------------------------- /EzApt/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzApt/Resources/Info.plist -------------------------------------------------------------------------------- /EzApt/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzApt/control -------------------------------------------------------------------------------- /EzApt/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzApt/postinst -------------------------------------------------------------------------------- /EzAutoBrightness/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzAutoBrightness/.gitattributes -------------------------------------------------------------------------------- /EzAutoBrightness/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzAutoBrightness/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzAutoBrightness/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzAutoBrightness/.theos/packages/com.simalary.control-center.ezautobrightness-1.0.0: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /EzAutoBrightness/.theos/packages/com.simalary.controlcenter.ezautobrightness-1.0.0: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /EzAutoBrightness/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzAutoBrightness/Makefile -------------------------------------------------------------------------------- /EzAutoBrightness/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzAutoBrightness/control -------------------------------------------------------------------------------- /EzCache/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzCache/.gitattributes -------------------------------------------------------------------------------- /EzCache/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzCache/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzCache/EzUICacheModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzCache/EzUICacheModule.h -------------------------------------------------------------------------------- /EzCache/EzUICacheModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzCache/EzUICacheModule.m -------------------------------------------------------------------------------- /EzCache/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzCache/Makefile -------------------------------------------------------------------------------- /EzCache/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzCache/Resources/Icon.png -------------------------------------------------------------------------------- /EzCache/Resources/Icon2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzCache/Resources/Icon2x.png -------------------------------------------------------------------------------- /EzCache/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzCache/Resources/Info.plist -------------------------------------------------------------------------------- /EzCache/Resources/uicache: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | su root 3 | alpine 4 | uicache 5 | killall -9 backboardd 6 | exit 0 -------------------------------------------------------------------------------- /EzCache/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzCache/control -------------------------------------------------------------------------------- /EzChrome/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzChrome/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /EzChrome/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzChrome/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzChrome/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.m4cs.chrome_0.1-beta-1+debug_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /EzChrome/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzChrome/.theos/packages/com.m4cs.chrome-0.1-beta: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /EzChrome/EzChrome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzChrome/EzChrome.h -------------------------------------------------------------------------------- /EzChrome/EzChrome.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzChrome/EzChrome.m -------------------------------------------------------------------------------- /EzChrome/EzChrome.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzChrome/EzChrome.plist -------------------------------------------------------------------------------- /EzChrome/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzChrome/Resources/Icon.png -------------------------------------------------------------------------------- /EzChrome/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzChrome/Resources/Icon@2x.png -------------------------------------------------------------------------------- /EzChrome/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzChrome/Resources/Info.plist -------------------------------------------------------------------------------- /EzChrome/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzChrome/control -------------------------------------------------------------------------------- /EzChrome/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzChrome/makefile -------------------------------------------------------------------------------- /EzCydiaLauncher/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzCydiaLauncher/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzCydiaLauncher/EzCydiaOpener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzCydiaLauncher/EzCydiaOpener.h -------------------------------------------------------------------------------- /EzCydiaLauncher/EzCydiaOpener.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzCydiaLauncher/EzCydiaOpener.m -------------------------------------------------------------------------------- /EzCydiaLauncher/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzCydiaLauncher/Makefile -------------------------------------------------------------------------------- /EzCydiaLauncher/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzCydiaLauncher/Resources/Icon.png -------------------------------------------------------------------------------- /EzCydiaLauncher/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzCydiaLauncher/control -------------------------------------------------------------------------------- /EzDiscord/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzDiscord/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /EzDiscord/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzDiscord/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzDiscord/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.m4cs.discord_0.1-beta-2+debug_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /EzDiscord/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzDiscord/.theos/packages/com.m4cs.discord-0.1-beta: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /EzDiscord/EzDiscord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzDiscord/EzDiscord.h -------------------------------------------------------------------------------- /EzDiscord/EzDiscord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzDiscord/EzDiscord.m -------------------------------------------------------------------------------- /EzDiscord/EzDiscord.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzDiscord/EzDiscord.plist -------------------------------------------------------------------------------- /EzDiscord/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzDiscord/Resources/Icon.png -------------------------------------------------------------------------------- /EzDiscord/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzDiscord/Resources/Icon@2x.png -------------------------------------------------------------------------------- /EzDiscord/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzDiscord/Resources/Info.plist -------------------------------------------------------------------------------- /EzDiscord/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzDiscord/control -------------------------------------------------------------------------------- /EzDiscord/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzDiscord/makefile -------------------------------------------------------------------------------- /EzFacebook/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzFacebook/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /EzFacebook/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzFacebook/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzFacebook/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.m4cs.facebook_0.1-beta-1+debug_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /EzFacebook/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzFacebook/.theos/packages/com.m4cs.facebook-0.1-beta: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /EzFacebook/EzFacebook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzFacebook/EzFacebook.h -------------------------------------------------------------------------------- /EzFacebook/EzFacebook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzFacebook/EzFacebook.m -------------------------------------------------------------------------------- /EzFacebook/EzFacebook.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzFacebook/EzFacebook.plist -------------------------------------------------------------------------------- /EzFacebook/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzFacebook/Resources/Icon.png -------------------------------------------------------------------------------- /EzFacebook/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzFacebook/Resources/Icon@2x.png -------------------------------------------------------------------------------- /EzFacebook/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzFacebook/Resources/Info.plist -------------------------------------------------------------------------------- /EzFacebook/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzFacebook/control -------------------------------------------------------------------------------- /EzFacebook/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzFacebook/makefile -------------------------------------------------------------------------------- /EzFacebook/packages/data.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzFacebook/packages/data.tar -------------------------------------------------------------------------------- /EzFieldTest/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzFieldTest/.gitattributes -------------------------------------------------------------------------------- /EzFieldTest/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzFieldTest/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzFieldTest/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.m4cs.fieldtest_0.1-beta-3+debug_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /EzFieldTest/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzFieldTest/.theos/packages/com.m4cs.fieldtest-0.1-beta: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /EzFieldTest/EzFieldTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzFieldTest/EzFieldTest.h -------------------------------------------------------------------------------- /EzFieldTest/EzFieldTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzFieldTest/EzFieldTest.m -------------------------------------------------------------------------------- /EzFieldTest/EzFieldTest.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzFieldTest/EzFieldTest.plist -------------------------------------------------------------------------------- /EzFieldTest/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzFieldTest/Resources/Icon.png -------------------------------------------------------------------------------- /EzFieldTest/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzFieldTest/Resources/Icon@2x.png -------------------------------------------------------------------------------- /EzFieldTest/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzFieldTest/Resources/Info.plist -------------------------------------------------------------------------------- /EzFieldTest/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzFieldTest/control -------------------------------------------------------------------------------- /EzFieldTest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzFieldTest/makefile -------------------------------------------------------------------------------- /EzFramework/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzFramework/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzFramework/EzFramework.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzFramework/EzFramework.plist -------------------------------------------------------------------------------- /EzFramework/EzFramework.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzFramework/EzFramework.rar -------------------------------------------------------------------------------- /EzFramework/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzFramework/Makefile -------------------------------------------------------------------------------- /EzFramework/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzFramework/Tweak.xm -------------------------------------------------------------------------------- /EzFramework/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzFramework/control -------------------------------------------------------------------------------- /EzMessages/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzMessages/.gitattributes -------------------------------------------------------------------------------- /EzMessages/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzMessages/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /EzMessages/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzMessages/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzMessages/.theos/last_package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzMessages/.theos/last_package -------------------------------------------------------------------------------- /EzMessages/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzMessages/.theos/packages/com.m4cs.messages-0.1-beta: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /EzMessages/EzMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzMessages/EzMessages.h -------------------------------------------------------------------------------- /EzMessages/EzMessages.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzMessages/EzMessages.m -------------------------------------------------------------------------------- /EzMessages/EzMessages.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzMessages/EzMessages.plist -------------------------------------------------------------------------------- /EzMessages/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzMessages/Resources/Icon.png -------------------------------------------------------------------------------- /EzMessages/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzMessages/Resources/Icon@2x.png -------------------------------------------------------------------------------- /EzMessages/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzMessages/Resources/Info.plist -------------------------------------------------------------------------------- /EzMessages/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzMessages/control -------------------------------------------------------------------------------- /EzMessages/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzMessages/makefile -------------------------------------------------------------------------------- /EzMusic/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzMusic/.gitattributes -------------------------------------------------------------------------------- /EzMusic/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzMusic/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /EzMusic/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzMusic/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzMusic/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.m4cs.music_0.1-beta-2+debug_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /EzMusic/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzMusic/.theos/packages/com.m4cs.music-0.1-beta: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /EzMusic/EzMusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzMusic/EzMusic.h -------------------------------------------------------------------------------- /EzMusic/EzMusic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzMusic/EzMusic.m -------------------------------------------------------------------------------- /EzMusic/EzMusic.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzMusic/EzMusic.plist -------------------------------------------------------------------------------- /EzMusic/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzMusic/Resources/Icon.png -------------------------------------------------------------------------------- /EzMusic/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzMusic/Resources/Icon@2x.png -------------------------------------------------------------------------------- /EzMusic/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzMusic/Resources/Info.plist -------------------------------------------------------------------------------- /EzMusic/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzMusic/control -------------------------------------------------------------------------------- /EzMusic/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzMusic/makefile -------------------------------------------------------------------------------- /EzPhone/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzPhone/.gitattributes -------------------------------------------------------------------------------- /EzPhone/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzPhone/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /EzPhone/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzPhone/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzPhone/.theos/last_package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzPhone/.theos/last_package -------------------------------------------------------------------------------- /EzPhone/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzPhone/.theos/packages/com.m4cs.phone-0.1-beta: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /EzPhone/EzPhone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzPhone/EzPhone.h -------------------------------------------------------------------------------- /EzPhone/EzPhone.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzPhone/EzPhone.m -------------------------------------------------------------------------------- /EzPhone/EzPhone.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzPhone/EzPhone.plist -------------------------------------------------------------------------------- /EzPhone/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzPhone/Resources/Icon.png -------------------------------------------------------------------------------- /EzPhone/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzPhone/Resources/Icon@2x.png -------------------------------------------------------------------------------- /EzPhone/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzPhone/Resources/Info.plist -------------------------------------------------------------------------------- /EzPhone/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzPhone/control -------------------------------------------------------------------------------- /EzPhone/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzPhone/makefile -------------------------------------------------------------------------------- /EzPlayMusic/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzPlayMusic/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzPlayMusic/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.m4cs.playmusic_0.1-beta-1+debug_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /EzPlayMusic/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzPlayMusic/.theos/packages/com.m4cs.playmusic-0.1-beta: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /EzPlayMusic/EzPlayMusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzPlayMusic/EzPlayMusic.h -------------------------------------------------------------------------------- /EzPlayMusic/EzPlayMusic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzPlayMusic/EzPlayMusic.m -------------------------------------------------------------------------------- /EzPlayMusic/EzPlayMusic.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzPlayMusic/EzPlayMusic.plist -------------------------------------------------------------------------------- /EzPlayMusic/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzPlayMusic/Resources/Icon.png -------------------------------------------------------------------------------- /EzPlayMusic/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzPlayMusic/Resources/Icon@2x.png -------------------------------------------------------------------------------- /EzPlayMusic/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzPlayMusic/Resources/Info.plist -------------------------------------------------------------------------------- /EzPlayMusic/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzPlayMusic/control -------------------------------------------------------------------------------- /EzPlayMusic/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzPlayMusic/makefile -------------------------------------------------------------------------------- /EzReboot/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzReboot/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /EzReboot/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzReboot/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzReboot/.theos/last_package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzReboot/.theos/last_package -------------------------------------------------------------------------------- /EzReboot/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzReboot/.theos/packages/com.m4cs.control-center.ezreboot-1.0: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /EzReboot/EzRebootModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzReboot/EzRebootModule.h -------------------------------------------------------------------------------- /EzReboot/EzRebootModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzReboot/EzRebootModule.m -------------------------------------------------------------------------------- /EzReboot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzReboot/Makefile -------------------------------------------------------------------------------- /EzReboot/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzReboot/Resources/Icon.png -------------------------------------------------------------------------------- /EzReboot/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzReboot/Resources/Icon@2x.png -------------------------------------------------------------------------------- /EzReboot/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzReboot/Resources/Info.plist -------------------------------------------------------------------------------- /EzReboot/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzReboot/control -------------------------------------------------------------------------------- /EzReboot1.1/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzReboot1.1/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzReboot1.1/.theos/last_package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzReboot1.1/.theos/last_package -------------------------------------------------------------------------------- /EzReboot1.1/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzReboot1.1/.theos/packages/com.ezccmodules.control-center.ezreboot-1.0: -------------------------------------------------------------------------------- 1 | 8 -------------------------------------------------------------------------------- /EzReboot1.1/.theos/packages/com.m4cs.control-center.ezreboot-1.0: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /EzReboot1.1/.theos/packages/com.m4cs.control-center.ezreboot-1.1: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /EzReboot1.1/EzRebootModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzReboot1.1/EzRebootModule.h -------------------------------------------------------------------------------- /EzReboot1.1/EzRebootModule.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzReboot1.1/EzRebootModule.xm -------------------------------------------------------------------------------- /EzReboot1.1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzReboot1.1/Makefile -------------------------------------------------------------------------------- /EzReboot1.1/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzReboot1.1/Resources/Icon.png -------------------------------------------------------------------------------- /EzReboot1.1/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzReboot1.1/Resources/Icon@2x.png -------------------------------------------------------------------------------- /EzReboot1.1/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzReboot1.1/Resources/Info.plist -------------------------------------------------------------------------------- /EzReboot1.1/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzReboot1.1/control -------------------------------------------------------------------------------- /EzRespring/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzRespring/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /EzRespring/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzRespring/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzRespring/.theos/last_package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzRespring/.theos/last_package -------------------------------------------------------------------------------- /EzRespring/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzRespring/.theos/packages/com.apple.control-center.respring-1.0: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /EzRespring/.theos/packages/com.m4cs.control-center.ezrespring-1.0: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /EzRespring/EzRespring.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzRespring/EzRespring.zip -------------------------------------------------------------------------------- /EzRespring/EzRespringModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzRespring/EzRespringModule.h -------------------------------------------------------------------------------- /EzRespring/EzRespringModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzRespring/EzRespringModule.m -------------------------------------------------------------------------------- /EzRespring/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzRespring/Makefile -------------------------------------------------------------------------------- /EzRespring/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzRespring/Resources/Icon.png -------------------------------------------------------------------------------- /EzRespring/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzRespring/Resources/Icon@2x.png -------------------------------------------------------------------------------- /EzRespring/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzRespring/Resources/Info.plist -------------------------------------------------------------------------------- /EzRespring/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzRespring/control -------------------------------------------------------------------------------- /EzRespring/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzRespring/postinst -------------------------------------------------------------------------------- /EzSafari/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSafari/.gitattributes -------------------------------------------------------------------------------- /EzSafari/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSafari/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /EzSafari/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzSafari/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzSafari/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.m4cs.safari_0.1-beta-3+debug_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /EzSafari/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzSafari/.theos/packages/com.m4cs.safari-0.1-beta: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /EzSafari/EzSafari.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSafari/EzSafari.h -------------------------------------------------------------------------------- /EzSafari/EzSafari.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSafari/EzSafari.m -------------------------------------------------------------------------------- /EzSafari/EzSafari.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSafari/EzSafari.plist -------------------------------------------------------------------------------- /EzSafari/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSafari/Resources/Icon.png -------------------------------------------------------------------------------- /EzSafari/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSafari/Resources/Icon@2x.png -------------------------------------------------------------------------------- /EzSafari/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSafari/Resources/Info.plist -------------------------------------------------------------------------------- /EzSafari/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSafari/control -------------------------------------------------------------------------------- /EzSafari/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSafari/makefile -------------------------------------------------------------------------------- /EzSafari/packages/data.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSafari/packages/data.tar -------------------------------------------------------------------------------- /EzSafemode/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSafemode/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /EzSafemode/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzSafemode/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzSafemode/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzSafemode/.theos/packages/com.ezccmodules.control-center.ezsafemodemodule-0.0.1: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /EzSafemode/EzSafemodeModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSafemode/EzSafemodeModule.h -------------------------------------------------------------------------------- /EzSafemode/EzSafemodeModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSafemode/EzSafemodeModule.m -------------------------------------------------------------------------------- /EzSafemode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSafemode/Makefile -------------------------------------------------------------------------------- /EzSafemode/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSafemode/Resources/Icon.png -------------------------------------------------------------------------------- /EzSafemode/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSafemode/Resources/Icon@2x.png -------------------------------------------------------------------------------- /EzSafemode/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSafemode/Resources/Info.plist -------------------------------------------------------------------------------- /EzSafemode/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSafemode/control -------------------------------------------------------------------------------- /EzSettingsOpener/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSettingsOpener/.gitattributes -------------------------------------------------------------------------------- /EzSettingsOpener/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzSettingsOpener/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzSettingsOpener/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.m4cs.settings_0.3-beta-3+debug_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /EzSettingsOpener/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzSettingsOpener/.theos/packages/com.m4cs.settings-0.3-beta: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /EzSettingsOpener/EzSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSettingsOpener/EzSettings.h -------------------------------------------------------------------------------- /EzSettingsOpener/EzSettings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSettingsOpener/EzSettings.m -------------------------------------------------------------------------------- /EzSettingsOpener/EzSettings.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSettingsOpener/EzSettings.plist -------------------------------------------------------------------------------- /EzSettingsOpener/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSettingsOpener/control -------------------------------------------------------------------------------- /EzSettingsOpener/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSettingsOpener/makefile -------------------------------------------------------------------------------- /EzSnapchatLauncher/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSnapchatLauncher/.gitattributes -------------------------------------------------------------------------------- /EzSnapchatLauncher/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzSnapchatLauncher/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzSnapchatLauncher/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzSnapchatLauncher/.theos/packages/com.m4cs.snapchatopener-0.1-beta: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /EzSnapchatLauncher/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSnapchatLauncher/control -------------------------------------------------------------------------------- /EzSnapchatLauncher/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSnapchatLauncher/makefile -------------------------------------------------------------------------------- /EzSpotify/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSpotify/.gitattributes -------------------------------------------------------------------------------- /EzSpotify/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSpotify/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /EzSpotify/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzSpotify/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzSpotify/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.m4cs.spotify_0.1-beta-1+debug_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /EzSpotify/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzSpotify/.theos/packages/com.m4cs.spotify-0.1-beta: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /EzSpotify/EzSpotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSpotify/EzSpotify.h -------------------------------------------------------------------------------- /EzSpotify/EzSpotify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSpotify/EzSpotify.m -------------------------------------------------------------------------------- /EzSpotify/EzSpotify.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSpotify/EzSpotify.plist -------------------------------------------------------------------------------- /EzSpotify/EzSpotify.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSpotify/EzSpotify.zip -------------------------------------------------------------------------------- /EzSpotify/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSpotify/Resources/Icon.png -------------------------------------------------------------------------------- /EzSpotify/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSpotify/Resources/Icon@2x.png -------------------------------------------------------------------------------- /EzSpotify/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSpotify/Resources/Info.plist -------------------------------------------------------------------------------- /EzSpotify/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSpotify/control -------------------------------------------------------------------------------- /EzSpotify/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzSpotify/makefile -------------------------------------------------------------------------------- /EzUICache/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzUICache/.gitattributes -------------------------------------------------------------------------------- /EzUICache/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzUICache/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /EzUICache/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzUICache/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzUICache/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzUICache/.theos/packages/com.exccmodules.control-center.ezuicache-0.0.1: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /EzUICache/EzUICacheModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzUICache/EzUICacheModule.h -------------------------------------------------------------------------------- /EzUICache/EzUICacheModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzUICache/EzUICacheModule.m -------------------------------------------------------------------------------- /EzUICache/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzUICache/Makefile -------------------------------------------------------------------------------- /EzUICache/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzUICache/Resources/Icon.png -------------------------------------------------------------------------------- /EzUICache/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzUICache/Resources/Icon@2x.png -------------------------------------------------------------------------------- /EzUICache/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzUICache/Resources/Info.plist -------------------------------------------------------------------------------- /EzUICache/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzUICache/control -------------------------------------------------------------------------------- /EzVPN/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzVPN/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /EzVPN/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzVPN/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzVPN/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EzVPN/.theos/packages/com.ezccmodules.control-center.ezvpn-0.0.1: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /EzVPN/.theos/packages/com.ezccmodules.control-center.ezvpnmodule-0.0.1: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /EzVPN/EzVPNModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzVPN/EzVPNModule.h -------------------------------------------------------------------------------- /EzVPN/EzVPNModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzVPN/EzVPNModule.m -------------------------------------------------------------------------------- /EzVPN/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzVPN/Makefile -------------------------------------------------------------------------------- /EzVPN/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzVPN/Resources/Icon.png -------------------------------------------------------------------------------- /EzVPN/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzVPN/Resources/Icon@2x.png -------------------------------------------------------------------------------- /EzVPN/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzVPN/Resources/Info.plist -------------------------------------------------------------------------------- /EzVPN/Resources/Resources.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzVPN/Resources/Resources.zip -------------------------------------------------------------------------------- /EzVPN/Resources/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzVPN/Resources/box.png -------------------------------------------------------------------------------- /EzVPN/Resources/box@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzVPN/Resources/box@2x.png -------------------------------------------------------------------------------- /EzVPN/Resources/downarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzVPN/Resources/downarrow.png -------------------------------------------------------------------------------- /EzVPN/Resources/downarrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzVPN/Resources/downarrow@2x.png -------------------------------------------------------------------------------- /EzVPN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/EzVPN/control -------------------------------------------------------------------------------- /GoogleAuthenticator/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/GoogleAuthenticator/.gitattributes -------------------------------------------------------------------------------- /GoogleAuthenticator/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GoogleAuthenticator/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GoogleAuthenticator/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GoogleAuthenticator/.theos/packages/com.m4cs.googleauthenticator-0.1-beta: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /GoogleAuthenticator/.theos/packages/com.m4cs.googleauthenticator-0.2-beta: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /GoogleAuthenticator/.theos/packages/com.m4cs.googleauthenticator-0.3-beta: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /GoogleAuthenticator/.theos/packages/com.m4cs.googleauthenticator-0.4-beta: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /GoogleAuthenticator/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/GoogleAuthenticator/control -------------------------------------------------------------------------------- /GoogleAuthenticator/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/GoogleAuthenticator/makefile -------------------------------------------------------------------------------- /HaystackCC/HSKEzCCModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/HaystackCC/HSKEzCCModule.h -------------------------------------------------------------------------------- /HaystackCC/HSKEzCCModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/HaystackCC/HSKEzCCModule.m -------------------------------------------------------------------------------- /HaystackCC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/HaystackCC/Makefile -------------------------------------------------------------------------------- /HaystackCC/MaybeITwurks.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/HaystackCC/MaybeITwurks.zip -------------------------------------------------------------------------------- /HaystackCC/Resources/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/HaystackCC/Resources/.DS_Store -------------------------------------------------------------------------------- /HaystackCC/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/HaystackCC/Resources/Info.plist -------------------------------------------------------------------------------- /HaystackCC/Resources/respring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/HaystackCC/Resources/respring.png -------------------------------------------------------------------------------- /HaystackCC/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/HaystackCC/control -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/LICENSE -------------------------------------------------------------------------------- /LPMiPad/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/LPMiPad/.gitattributes -------------------------------------------------------------------------------- /LPMiPad/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LPMiPad/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LPMiPad/CoreDuet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/LPMiPad/CoreDuet.h -------------------------------------------------------------------------------- /LPMiPad/Frameworks/SAObjects.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/LPMiPad/Frameworks/SAObjects.tbd -------------------------------------------------------------------------------- /LPMiPad/LPMiPad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/LPMiPad/LPMiPad.h -------------------------------------------------------------------------------- /LPMiPad/LPMiPad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/LPMiPad/LPMiPad.m -------------------------------------------------------------------------------- /LPMiPad/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/LPMiPad/Makefile -------------------------------------------------------------------------------- /LPMiPad/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/LPMiPad/Resources/Icon.png -------------------------------------------------------------------------------- /LPMiPad/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/LPMiPad/Resources/Icon@2x.png -------------------------------------------------------------------------------- /LPMiPad/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/LPMiPad/Resources/Info.plist -------------------------------------------------------------------------------- /LPMiPad/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/LPMiPad/control -------------------------------------------------------------------------------- /LocationModule/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LocationModule/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LocationModule/.theos/last_package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/LocationModule/.theos/last_package -------------------------------------------------------------------------------- /LocationModule/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LocationModule/.theos/packages/Packagecom.ezccmodules.control-center.ezlocationmodule-0.0.1: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /LocationModule/.theos/packages/com.ezccmodules.control-center.ezlocationmodule-0.0.1: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /LocationModule/EzLocationModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/LocationModule/EzLocationModule.h -------------------------------------------------------------------------------- /LocationModule/EzLocationModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/LocationModule/EzLocationModule.m -------------------------------------------------------------------------------- /LocationModule/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/LocationModule/Resources/Icon.png -------------------------------------------------------------------------------- /LocationModule/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/LocationModule/control -------------------------------------------------------------------------------- /LocationModule/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/LocationModule/makefile -------------------------------------------------------------------------------- /MagnifierThingy/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/MagnifierThingy/Assets.car -------------------------------------------------------------------------------- /MagnifierThingy/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/MagnifierThingy/Info.plist -------------------------------------------------------------------------------- /MagnifierThingy/MagnifierModule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/MagnifierThingy/MagnifierModule -------------------------------------------------------------------------------- /ModernXI/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/ModernXI/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /ModernXI/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ModernXI/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ModernXI/.theos/last_package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/ModernXI/.theos/last_package -------------------------------------------------------------------------------- /ModernXI/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ModernXI/.theos/packages/io.ominousness.modernxi-0.1.0: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /ModernXI/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/ModernXI/Makefile -------------------------------------------------------------------------------- /ModernXI/Prefs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/ModernXI/Prefs/Makefile -------------------------------------------------------------------------------- /ModernXI/Prefs/Preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/ModernXI/Prefs/Preferences.h -------------------------------------------------------------------------------- /ModernXI/Prefs/Preferences.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/ModernXI/Prefs/Preferences.m -------------------------------------------------------------------------------- /ModernXI/Prefs/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/ModernXI/Prefs/entry.plist -------------------------------------------------------------------------------- /ModernXI/Tweak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/ModernXI/Tweak/Makefile -------------------------------------------------------------------------------- /ModernXI/Tweak/ModernXI.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/ModernXI/Tweak/ModernXI.plist -------------------------------------------------------------------------------- /ModernXI/Tweak/Tweak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/ModernXI/Tweak/Tweak.h -------------------------------------------------------------------------------- /ModernXI/Tweak/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/ModernXI/Tweak/Tweak.xm -------------------------------------------------------------------------------- /ModernXI/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/ModernXI/control -------------------------------------------------------------------------------- /NoBlurFolderIconsXI-master/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NoBlurFolderIconsXI-master/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NoBlurFolderIconsXI-master/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/NoBlurFolderIconsXI-master/control -------------------------------------------------------------------------------- /NoPasscodeBlur/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/NoPasscodeBlur/LICENSE -------------------------------------------------------------------------------- /NoPasscodeBlur/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/NoPasscodeBlur/Makefile -------------------------------------------------------------------------------- /NoPasscodeBlur/NoBlur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/NoPasscodeBlur/NoBlur.h -------------------------------------------------------------------------------- /NoPasscodeBlur/NoBlur.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/NoPasscodeBlur/NoBlur.plist -------------------------------------------------------------------------------- /NoPasscodeBlur/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/NoPasscodeBlur/README.md -------------------------------------------------------------------------------- /NoPasscodeBlur/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/NoPasscodeBlur/Tweak.xm -------------------------------------------------------------------------------- /NoPasscodeBlur/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/NoPasscodeBlur/control -------------------------------------------------------------------------------- /NoPasscodeBlur/noblur/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/NoPasscodeBlur/noblur/Makefile -------------------------------------------------------------------------------- /NoPasscodeBlur/noblur/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/NoPasscodeBlur/noblur/entry.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/README.md -------------------------------------------------------------------------------- /Respring Module/CTXTestModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/Respring Module/CTXTestModule.h -------------------------------------------------------------------------------- /Respring Module/CTXTestModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/Respring Module/CTXTestModule.m -------------------------------------------------------------------------------- /Respring Module/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/Respring Module/Makefile -------------------------------------------------------------------------------- /Respring Module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/Respring Module/README.md -------------------------------------------------------------------------------- /Respring Module/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/Respring Module/Resources/Icon.png -------------------------------------------------------------------------------- /Respring Module/Resources/Icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/Respring Module/Resources/Icon.psd -------------------------------------------------------------------------------- /Respring Module/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/Respring Module/control -------------------------------------------------------------------------------- /Respring Module/headers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/Respring Module/headers/.DS_Store -------------------------------------------------------------------------------- /Rooster/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/Rooster/.gitignore -------------------------------------------------------------------------------- /Rooster/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/Rooster/.travis.yml -------------------------------------------------------------------------------- /Rooster/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/Rooster/Makefile -------------------------------------------------------------------------------- /Rooster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/Rooster/README.md -------------------------------------------------------------------------------- /Rooster/Rooster.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/Rooster/Rooster.plist -------------------------------------------------------------------------------- /Rooster/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/Rooster/Tweak.xm -------------------------------------------------------------------------------- /Rooster/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/Rooster/control -------------------------------------------------------------------------------- /aesirpirateprotection/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aesirpirateprotection/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aesirpirateprotection/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aesirpirateprotection/.theos/packages/com.macs.aesirpirateprotection-0.0.1: -------------------------------------------------------------------------------- 1 | 13 -------------------------------------------------------------------------------- /aesirpirateprotection/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/aesirpirateprotection/Makefile -------------------------------------------------------------------------------- /aesirpirateprotection/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/aesirpirateprotection/Tweak.xm -------------------------------------------------------------------------------- /aesirpirateprotection/UIView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/aesirpirateprotection/UIView.h -------------------------------------------------------------------------------- /aesirpirateprotection/UIWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/aesirpirateprotection/UIWindow.h -------------------------------------------------------------------------------- /aesirpirateprotection/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/aesirpirateprotection/control -------------------------------------------------------------------------------- /appitor/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/appitor/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /appitor/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appitor/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appitor/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.macs.appitor_0.0.1-2+debug_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /appitor/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appitor/.theos/packages/com.macs.appitor-0.0.1: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /appitor/Appitor.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/appitor/Appitor.plist -------------------------------------------------------------------------------- /appitor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/appitor/Makefile -------------------------------------------------------------------------------- /appitor/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/appitor/Tweak.xm -------------------------------------------------------------------------------- /appitor/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/appitor/control -------------------------------------------------------------------------------- /appitor/packages/data.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/appitor/packages/data.tar -------------------------------------------------------------------------------- /atcxi/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/atcxi/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /atcxi/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /atcxi/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /atcxi/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.macs.atcxi_0.0.1-1+debug_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /atcxi/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /atcxi/.theos/obj/debug/ATCXI.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/atcxi/.theos/obj/debug/ATCXI.dylib -------------------------------------------------------------------------------- /atcxi/.theos/packages/com.macs.atcxi-0.0.1: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /atcxi/ATCXI.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/atcxi/ATCXI.plist -------------------------------------------------------------------------------- /atcxi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/atcxi/Makefile -------------------------------------------------------------------------------- /atcxi/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/atcxi/Tweak.xm -------------------------------------------------------------------------------- /atcxi/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/atcxi/control -------------------------------------------------------------------------------- /auxi/Auxi.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/auxi/Auxi.plist -------------------------------------------------------------------------------- /auxi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/auxi/Makefile -------------------------------------------------------------------------------- /auxi/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/auxi/Tweak.xm -------------------------------------------------------------------------------- /auxi/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/auxi/control -------------------------------------------------------------------------------- /axistweak/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/axistweak/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /axistweak/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /axistweak/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /axistweak/.theos/last_package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/axistweak/.theos/last_package -------------------------------------------------------------------------------- /axistweak/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /axistweak/.theos/packages/com.yourcompany.axistweak-0.0.1: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /axistweak/AxisTweak.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/axistweak/AxisTweak.plist -------------------------------------------------------------------------------- /axistweak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/axistweak/Makefile -------------------------------------------------------------------------------- /axistweak/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/axistweak/Tweak.xm -------------------------------------------------------------------------------- /axistweak/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/axistweak/control -------------------------------------------------------------------------------- /bettercards/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bettercards/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bettercards/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.macs.bettercards_0.0.1-3+debug_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /bettercards/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bettercards/.theos/packages/com.macs.bettercards-0.0.1: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /bettercards/BetterCards.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/bettercards/BetterCards.plist -------------------------------------------------------------------------------- /bettercards/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/bettercards/Makefile -------------------------------------------------------------------------------- /bettercards/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/bettercards/Tweak.xm -------------------------------------------------------------------------------- /bettercards/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/bettercards/control -------------------------------------------------------------------------------- /betterncxi/BetterNCXI.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/betterncxi/BetterNCXI.plist -------------------------------------------------------------------------------- /betterncxi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/betterncxi/Makefile -------------------------------------------------------------------------------- /betterncxi/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/betterncxi/Tweak.xm -------------------------------------------------------------------------------- /betterncxi/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/betterncxi/control -------------------------------------------------------------------------------- /betterswitcher/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /betterswitcher/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /betterswitcher/.theos/last_package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/betterswitcher/.theos/last_package -------------------------------------------------------------------------------- /betterswitcher/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /betterswitcher/.theos/packages/com.auxilium.betterswitcher-0.0.1: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /betterswitcher/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/betterswitcher/Makefile -------------------------------------------------------------------------------- /betterswitcher/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/betterswitcher/Tweak.xm -------------------------------------------------------------------------------- /betterswitcher/betterswitcher.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/betterswitcher/betterswitcher.zip -------------------------------------------------------------------------------- /betterswitcher/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/betterswitcher/control -------------------------------------------------------------------------------- /bouncy/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/bouncy/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /bouncy/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bouncy/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bouncy/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.macs.bouncy_0.0.1-3+debug_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /bouncy/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bouncy/.theos/packages/com.macs.bouncy-0.0.1: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /bouncy/Bouncy.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/bouncy/Bouncy.plist -------------------------------------------------------------------------------- /bouncy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/bouncy/Makefile -------------------------------------------------------------------------------- /bouncy/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/bouncy/Tweak.xm -------------------------------------------------------------------------------- /bouncy/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/bouncy/control -------------------------------------------------------------------------------- /buttdialbegone/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /buttdialbegone/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /buttdialbegone/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/buttdialbegone/Makefile -------------------------------------------------------------------------------- /buttdialbegone/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/buttdialbegone/Tweak.xm -------------------------------------------------------------------------------- /buttdialbegone/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/buttdialbegone/control -------------------------------------------------------------------------------- /colorcam/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorcam/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /colorcam/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colorcam/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colorcam/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.macs.colorcam_1.0.0-5+debug_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /colorcam/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colorcam/.theos/packages/com.macs.colorcam-0.0.1: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /colorcam/.theos/packages/com.macs.colorcam-1.0.0: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /colorcam/ColorCam.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorcam/ColorCam.plist -------------------------------------------------------------------------------- /colorcam/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorcam/Makefile -------------------------------------------------------------------------------- /colorcam/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorcam/Tweak.xm -------------------------------------------------------------------------------- /colorcam/colorcamprefs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorcam/colorcamprefs/Makefile -------------------------------------------------------------------------------- /colorcam/colorcamprefs/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorcam/colorcamprefs/entry.plist -------------------------------------------------------------------------------- /colorcam/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorcam/control -------------------------------------------------------------------------------- /colorclock/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colorclock/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colorclock/ColorClock.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorclock/ColorClock.plist -------------------------------------------------------------------------------- /colorclock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorclock/Makefile -------------------------------------------------------------------------------- /colorclock/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorclock/Tweak.xm -------------------------------------------------------------------------------- /colorclock/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorclock/control -------------------------------------------------------------------------------- /colorfolders/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colorfolders/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colorfolders/.theos/last_package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorfolders/.theos/last_package -------------------------------------------------------------------------------- /colorfolders/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colorfolders/.theos/packages/com.macs.colorfolders-0.0.1: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /colorfolders/ColorFolders.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorfolders/ColorFolders.plist -------------------------------------------------------------------------------- /colorfolders/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorfolders/Makefile -------------------------------------------------------------------------------- /colorfolders/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorfolders/Tweak.xm -------------------------------------------------------------------------------- /colorfolders/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorfolders/control -------------------------------------------------------------------------------- /colormycc/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colormycc/.DS_Store -------------------------------------------------------------------------------- /colormycc/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colormycc/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /colormycc/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colormycc/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colormycc/.theos/last_package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colormycc/.theos/last_package -------------------------------------------------------------------------------- /colormycc/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colormycc/.theos/packages/com.rustybalboa.colormycc-0.0.1: -------------------------------------------------------------------------------- 1 | 17 -------------------------------------------------------------------------------- /colormycc/ColorMyCC.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colormycc/ColorMyCC.plist -------------------------------------------------------------------------------- /colormycc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colormycc/Makefile -------------------------------------------------------------------------------- /colormycc/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colormycc/Tweak.xm -------------------------------------------------------------------------------- /colormycc/colormycc.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colormycc/colormycc.zip -------------------------------------------------------------------------------- /colormycc/colormycc/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colormycc/colormycc/.DS_Store -------------------------------------------------------------------------------- /colormycc/colormycc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colormycc/colormycc/Makefile -------------------------------------------------------------------------------- /colormycc/colormycc/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colormycc/colormycc/entry.plist -------------------------------------------------------------------------------- /colormycc/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colormycc/control -------------------------------------------------------------------------------- /colormycc/obj/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colormycc/obj/.DS_Store -------------------------------------------------------------------------------- /colorswitcher/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colorswitcher/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colorswitcher/ColorSwitcher.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorswitcher/ColorSwitcher.plist -------------------------------------------------------------------------------- /colorswitcher/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorswitcher/LICENSE.md -------------------------------------------------------------------------------- /colorswitcher/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorswitcher/Makefile -------------------------------------------------------------------------------- /colorswitcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorswitcher/README.md -------------------------------------------------------------------------------- /colorswitcher/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorswitcher/Tweak.xm -------------------------------------------------------------------------------- /colorswitcher/colorswitcher.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorswitcher/colorswitcher.zip -------------------------------------------------------------------------------- /colorswitcher/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorswitcher/control -------------------------------------------------------------------------------- /colorswitcher2/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colorswitcher2/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colorswitcher2/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.macs.colorswitcher_0.0.3_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /colorswitcher2/.theos/obj/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colorswitcher2/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colorswitcher2/.theos/packages/com.macs.colorswitcher-0.0.2: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /colorswitcher2/ColorSwitcher.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorswitcher2/ColorSwitcher.plist -------------------------------------------------------------------------------- /colorswitcher2/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorswitcher2/LICENSE.md -------------------------------------------------------------------------------- /colorswitcher2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorswitcher2/Makefile -------------------------------------------------------------------------------- /colorswitcher2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorswitcher2/README.md -------------------------------------------------------------------------------- /colorswitcher2/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorswitcher2/Tweak.xm -------------------------------------------------------------------------------- /colorswitcher2/colorswitcher2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorswitcher2/colorswitcher2.zip -------------------------------------------------------------------------------- /colorswitcher2/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorswitcher2/control -------------------------------------------------------------------------------- /colorswitcher2/libcolorpicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorswitcher2/libcolorpicker.h -------------------------------------------------------------------------------- /colorswitcherUpdate/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colorswitcherUpdate/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colorswitcherUpdate/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorswitcherUpdate/LICENSE.md -------------------------------------------------------------------------------- /colorswitcherUpdate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorswitcherUpdate/Makefile -------------------------------------------------------------------------------- /colorswitcherUpdate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorswitcherUpdate/README.md -------------------------------------------------------------------------------- /colorswitcherUpdate/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorswitcherUpdate/Tweak.xm -------------------------------------------------------------------------------- /colorswitcherUpdate/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorswitcherUpdate/control -------------------------------------------------------------------------------- /colorswitcherwithpref/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colorswitcherwithpref/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colorswitcherwithpref/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.macs.colorswitcher_0.0.1_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /colorswitcherwithpref/.theos/obj/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colorswitcherwithpref/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colorswitcherwithpref/.theos/packages/com.auxilium.colorSwitcher-0.0.1: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /colorswitcherwithpref/.theos/packages/com.macs.colorswitcher-0.0.1: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /colorswitcherwithpref/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorswitcherwithpref/LICENSE.md -------------------------------------------------------------------------------- /colorswitcherwithpref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorswitcherwithpref/Makefile -------------------------------------------------------------------------------- /colorswitcherwithpref/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorswitcherwithpref/README.md -------------------------------------------------------------------------------- /colorswitcherwithpref/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorswitcherwithpref/Tweak.xm -------------------------------------------------------------------------------- /colorswitcherwithpref/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/colorswitcherwithpref/control -------------------------------------------------------------------------------- /ctfflag2/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/ctfflag2/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /ctfflag2/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ctfflag2/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ctfflag2/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.auxiliumctfs.ctfflag2_0.0.2_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /ctfflag2/.theos/obj/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ctfflag2/.theos/obj/CTFFlag2.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/ctfflag2/.theos/obj/CTFFlag2.dylib -------------------------------------------------------------------------------- /ctfflag2/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ctfflag2/.theos/packages/com.auxiliumctfs.ctfflag2-0.0.1: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /ctfflag2/.theos/packages/com.auxiliumctfs.ctfflag2-0.0.2: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /ctfflag2/CTFFlag2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/ctfflag2/CTFFlag2.plist -------------------------------------------------------------------------------- /ctfflag2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/ctfflag2/Makefile -------------------------------------------------------------------------------- /ctfflag2/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/ctfflag2/Tweak.xm -------------------------------------------------------------------------------- /ctfflag2/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/ctfflag2/control -------------------------------------------------------------------------------- /ctfflag2/ctfflag2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/ctfflag2/ctfflag2.zip -------------------------------------------------------------------------------- /ctfflag2/packages/Packages.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/ctfflag2/packages/Packages.bz2 -------------------------------------------------------------------------------- /darklauncher/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /darklauncher/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /darklauncher/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.tonyk7.darkswitcher_0.0.1-2+debug_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /darklauncher/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /darklauncher/.theos/packages/com.tonyk7.darkswitcher-0.0.1: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /darklauncher/DarkSwitcher.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/darklauncher/DarkSwitcher.plist -------------------------------------------------------------------------------- /darklauncher/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/darklauncher/Makefile -------------------------------------------------------------------------------- /darklauncher/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/darklauncher/Tweak.xm -------------------------------------------------------------------------------- /darklauncher/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/darklauncher/control -------------------------------------------------------------------------------- /darklauncher/darklauncher.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/darklauncher/darklauncher.zip -------------------------------------------------------------------------------- /darklauncher/packages/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/darklauncher/packages/.DS_Store -------------------------------------------------------------------------------- /darkswitcher/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /darkswitcher/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /darkswitcher/.theos/last_package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/darkswitcher/.theos/last_package -------------------------------------------------------------------------------- /darkswitcher/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /darkswitcher/.theos/packages/com.auxilium.darkswitcher-0.0.1: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /darkswitcher/DarkSwitcher.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/darkswitcher/DarkSwitcher.plist -------------------------------------------------------------------------------- /darkswitcher/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/darkswitcher/Makefile -------------------------------------------------------------------------------- /darkswitcher/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/darkswitcher/Tweak.xm -------------------------------------------------------------------------------- /darkswitcher/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/darkswitcher/control -------------------------------------------------------------------------------- /darkswitcher/darkswitcher.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/darkswitcher/darkswitcher.zip -------------------------------------------------------------------------------- /darkswitcher/redditrelease.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/darkswitcher/redditrelease.txt -------------------------------------------------------------------------------- /dusk/Dusk.plist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dusk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/dusk/Makefile -------------------------------------------------------------------------------- /dusk/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/dusk/Tweak.xm -------------------------------------------------------------------------------- /dusk/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/dusk/control -------------------------------------------------------------------------------- /excitant-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/excitant-master/.gitignore -------------------------------------------------------------------------------- /excitant-master/AppList.h: -------------------------------------------------------------------------------- 1 | #import "ALApplicationList.h" -------------------------------------------------------------------------------- /excitant-master/CommonDigest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/excitant-master/CommonDigest.h -------------------------------------------------------------------------------- /excitant-master/Excitant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/excitant-master/Excitant.h -------------------------------------------------------------------------------- /excitant-master/Excitant.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/excitant-master/Excitant.xm -------------------------------------------------------------------------------- /excitant-master/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/excitant-master/Makefile -------------------------------------------------------------------------------- /excitant-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/excitant-master/README.md -------------------------------------------------------------------------------- /excitant-master/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/excitant-master/control -------------------------------------------------------------------------------- /excitant-master/excitant.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/excitant-master/excitant.plist -------------------------------------------------------------------------------- /excitant-master/excitant/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/excitant-master/excitant/Makefile -------------------------------------------------------------------------------- /excitant-master/libexcitant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/excitant-master/libexcitant.h -------------------------------------------------------------------------------- /excitant/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/excitant/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /excitant/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /excitant/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /excitant/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.clarke1234.excitant_0.0.1-2+debug_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /excitant/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /excitant/.theos/packages/com.clarke1234.excitant-0.0.1: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /excitant/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/excitant/Makefile -------------------------------------------------------------------------------- /excitant/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/excitant/Tweak.xm -------------------------------------------------------------------------------- /excitant/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/excitant/control -------------------------------------------------------------------------------- /excitant/excitant.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/excitant/excitant.plist -------------------------------------------------------------------------------- /ezcolorswitcher/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ezcolorswitcher/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ezcolorswitcher/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ezcolorswitcher/.theos/packages/com.macs.ezcolorswitcher-0.0.1: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /ezcolorswitcher/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/ezcolorswitcher/Makefile -------------------------------------------------------------------------------- /ezcolorswitcher/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/ezcolorswitcher/Tweak.xm -------------------------------------------------------------------------------- /ezcolorswitcher/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/ezcolorswitcher/control -------------------------------------------------------------------------------- /ezcydiaopener/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ezcydiaopener/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ezcydiaopener/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.clarke1234.ezcydiaopener_1.1-8+debug_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /ezcydiaopener/.theos/obj/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ezcydiaopener/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ezcydiaopener/.theos/packages/com.clarke1234.ezcydiaopener-0.0.1: -------------------------------------------------------------------------------- 1 | 8 -------------------------------------------------------------------------------- /ezcydiaopener/.theos/packages/com.clarke1234.ezcydiaopener-1.0: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /ezcydiaopener/.theos/packages/com.clarke1234.ezcydiaopener-1.1: -------------------------------------------------------------------------------- 1 | 8 -------------------------------------------------------------------------------- /ezcydiaopener/Copying: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ezcydiaopener/EzCydiaOpener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/ezcydiaopener/EzCydiaOpener.h -------------------------------------------------------------------------------- /ezcydiaopener/EzCydiaOpener.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/ezcydiaopener/EzCydiaOpener.m -------------------------------------------------------------------------------- /ezcydiaopener/EzCydiaOpener.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/ezcydiaopener/EzCydiaOpener.plist -------------------------------------------------------------------------------- /ezcydiaopener/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/ezcydiaopener/Makefile -------------------------------------------------------------------------------- /ezcydiaopener/Making: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ezcydiaopener/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/ezcydiaopener/Resources/Icon.png -------------------------------------------------------------------------------- /ezcydiaopener/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/ezcydiaopener/Resources/Info.plist -------------------------------------------------------------------------------- /ezcydiaopener/Warning: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ezcydiaopener/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/ezcydiaopener/control -------------------------------------------------------------------------------- /feaRM/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/feaRM/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /feaRM/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feaRM/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feaRM/.theos/last_package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/feaRM/.theos/last_package -------------------------------------------------------------------------------- /feaRM/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feaRM/.theos/obj/debug/feaRM.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/feaRM/.theos/obj/debug/feaRM.dylib -------------------------------------------------------------------------------- /feaRM/.theos/packages/com.auxiliumdev.fearm-0.0.1: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /feaRM/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/feaRM/Makefile -------------------------------------------------------------------------------- /feaRM/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/feaRM/Tweak.xm -------------------------------------------------------------------------------- /feaRM/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/feaRM/control -------------------------------------------------------------------------------- /feaRM/feaRM.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/feaRM/feaRM.plist -------------------------------------------------------------------------------- /feaRM/feaRM.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/feaRM/feaRM.zip -------------------------------------------------------------------------------- /fibonaccicam/FibonacciCam.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/fibonaccicam/FibonacciCam.plist -------------------------------------------------------------------------------- /fibonaccicam/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/fibonaccicam/Makefile -------------------------------------------------------------------------------- /fibonaccicam/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/fibonaccicam/Tweak.xm -------------------------------------------------------------------------------- /fibonaccicam/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/fibonaccicam/control -------------------------------------------------------------------------------- /glowbadges/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/glowbadges/.gitmodules -------------------------------------------------------------------------------- /glowbadges/GlowBadge.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/glowbadges/GlowBadge.plist -------------------------------------------------------------------------------- /glowbadges/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/glowbadges/LICENSE -------------------------------------------------------------------------------- /glowbadges/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/glowbadges/Makefile -------------------------------------------------------------------------------- /glowbadges/Preferences/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/glowbadges/Preferences/Makefile -------------------------------------------------------------------------------- /glowbadges/Preferences/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/glowbadges/Preferences/entry.plist -------------------------------------------------------------------------------- /glowbadges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/glowbadges/README.md -------------------------------------------------------------------------------- /glowbadges/Screenshots/Example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/glowbadges/Screenshots/Example.png -------------------------------------------------------------------------------- /glowbadges/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/glowbadges/Tweak.xm -------------------------------------------------------------------------------- /glowbadges/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/glowbadges/control -------------------------------------------------------------------------------- /glowbadges/imgs/GlowBadageGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/glowbadges/imgs/GlowBadageGray.png -------------------------------------------------------------------------------- /glowbadges/imgs/GlowBadge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/glowbadges/imgs/GlowBadge.png -------------------------------------------------------------------------------- /glowbadges/imgs/GlowBadge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/glowbadges/imgs/GlowBadge@2x.png -------------------------------------------------------------------------------- /glowbadges/imgs/GlowBadge@2x.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/glowbadges/imgs/GlowBadge@2x.psd -------------------------------------------------------------------------------- /glownotifs/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/glownotifs/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /glownotifs/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glownotifs/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glownotifs/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.macs.glownotifs_0.0.1-2+debug_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /glownotifs/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glownotifs/.theos/packages/com.macs.glownotifs-0.0.1: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /glownotifs/GlowNotifs.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/glownotifs/GlowNotifs.plist -------------------------------------------------------------------------------- /glownotifs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/glownotifs/Makefile -------------------------------------------------------------------------------- /glownotifs/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/glownotifs/Tweak.xm -------------------------------------------------------------------------------- /glownotifs/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/glownotifs/control -------------------------------------------------------------------------------- /hud12/Hud12.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/hud12/Hud12.plist -------------------------------------------------------------------------------- /hud12/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/hud12/Makefile -------------------------------------------------------------------------------- /hud12/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/hud12/Tweak.xm -------------------------------------------------------------------------------- /hud12/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/hud12/control -------------------------------------------------------------------------------- /iffound/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/iffound/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /iffound/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iffound/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iffound/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.auxilium.iffound_0.0.1-5+debug_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /iffound/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iffound/.theos/packages/com.auxilium.iffound-0.0.1: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /iffound/IfFound.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/iffound/IfFound.plist -------------------------------------------------------------------------------- /iffound/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/iffound/Makefile -------------------------------------------------------------------------------- /iffound/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/iffound/Tweak.xm -------------------------------------------------------------------------------- /iffound/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/iffound/control -------------------------------------------------------------------------------- /jumplock/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/jumplock/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /jumplock/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jumplock/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jumplock/.theos/last_package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/jumplock/.theos/last_package -------------------------------------------------------------------------------- /jumplock/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jumplock/.theos/packages/com.macs.jumplock-0.0.1: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /jumplock/.theos/packages/com.macs.nestedfolders11-0.0.1: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /jumplock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/jumplock/Makefile -------------------------------------------------------------------------------- /jumplock/NestedFolders11.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/jumplock/NestedFolders11.plist -------------------------------------------------------------------------------- /jumplock/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/jumplock/Tweak.xm -------------------------------------------------------------------------------- /jumplock/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/jumplock/control -------------------------------------------------------------------------------- /littlecc/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/littlecc/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /littlecc/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /littlecc/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /littlecc/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.macs.littlecc_0.0.1-1+debug_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /littlecc/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /littlecc/.theos/packages/com.macs.littlecc-0.0.1: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /littlecc/LittleCC.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/littlecc/LittleCC.plist -------------------------------------------------------------------------------- /littlecc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/littlecc/Makefile -------------------------------------------------------------------------------- /littlecc/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/littlecc/Tweak.xm -------------------------------------------------------------------------------- /littlecc/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/littlecc/control -------------------------------------------------------------------------------- /littlecc/packages/data.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/littlecc/packages/data.tar -------------------------------------------------------------------------------- /nomorebanner/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nomorebanner/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nomorebanner/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/nomorebanner/LICENSE.md -------------------------------------------------------------------------------- /nomorebanner/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/nomorebanner/Makefile -------------------------------------------------------------------------------- /nomorebanner/NoMoreBanners.plist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nomorebanner/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/nomorebanner/Tweak.xm -------------------------------------------------------------------------------- /nomorebanner/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/nomorebanner/control -------------------------------------------------------------------------------- /nosautikerror/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nosautikerror/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nosautikerror/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/nosautikerror/Makefile -------------------------------------------------------------------------------- /nosautikerror/NoSaurikError.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/nosautikerror/NoSaurikError.plist -------------------------------------------------------------------------------- /nosautikerror/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/nosautikerror/README.md -------------------------------------------------------------------------------- /nosautikerror/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/nosautikerror/Tweak.xm -------------------------------------------------------------------------------- /nosautikerror/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/nosautikerror/control -------------------------------------------------------------------------------- /nowcolor/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/nowcolor/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /nowcolor/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nowcolor/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nowcolor/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.macs.nowcolor_0.0.1-5+debug_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /nowcolor/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nowcolor/.theos/packages/com.macs.nowcolor-0.0.1: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /nowcolor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/nowcolor/Makefile -------------------------------------------------------------------------------- /nowcolor/NowColor.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/nowcolor/NowColor.plist -------------------------------------------------------------------------------- /nowcolor/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/nowcolor/Tweak.xm -------------------------------------------------------------------------------- /nowcolor/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/nowcolor/control -------------------------------------------------------------------------------- /oopsieqr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/oopsieqr/Makefile -------------------------------------------------------------------------------- /oopsieqr/OopsieQR.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/oopsieqr/OopsieQR.plist -------------------------------------------------------------------------------- /oopsieqr/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/oopsieqr/Tweak.xm -------------------------------------------------------------------------------- /oopsieqr/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/oopsieqr/control -------------------------------------------------------------------------------- /perl5/bin/zipdetails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/perl5/bin/zipdetails -------------------------------------------------------------------------------- /perl5/lib/perl5/Compress/Zlib.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/perl5/lib/perl5/Compress/Zlib.pm -------------------------------------------------------------------------------- /perl5/lib/perl5/File/GlobMapper.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/perl5/lib/perl5/File/GlobMapper.pm -------------------------------------------------------------------------------- /perl5/lib/perl5/local/lib.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/perl5/lib/perl5/local/lib.pm -------------------------------------------------------------------------------- /perl5/man/man1/zipdetails.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/perl5/man/man1/zipdetails.1 -------------------------------------------------------------------------------- /perl5/man/man3/local.lib.3pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/perl5/man/man3/local.lib.3pm -------------------------------------------------------------------------------- /presstosettings/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /presstosettings/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /presstosettings/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /presstosettings/.theos/packages/com.macs.auxiliumdev.presstosettings-0.0.1: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /presstosettings/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/presstosettings/Makefile -------------------------------------------------------------------------------- /presstosettings/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/presstosettings/Tweak.xm -------------------------------------------------------------------------------- /presstosettings/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/presstosettings/control -------------------------------------------------------------------------------- /prettyvid/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prettyvid/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prettyvid/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.macs.prettyvid_0.0.1-10+debug_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /prettyvid/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prettyvid/.theos/packages/com.macs.prettyvid-0.0.1: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /prettyvid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/prettyvid/Makefile -------------------------------------------------------------------------------- /prettyvid/PrettyVid.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/prettyvid/PrettyVid.plist -------------------------------------------------------------------------------- /prettyvid/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/prettyvid/Tweak.xm -------------------------------------------------------------------------------- /prettyvid/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/prettyvid/control -------------------------------------------------------------------------------- /readit/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/readit/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /readit/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /readit/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /readit/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.auxilium.readit_0.0.1-5+debug_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /readit/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /readit/.theos/packages/com.auxilium.readit-0.0.1: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /readit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/readit/Makefile -------------------------------------------------------------------------------- /readit/ReadIt.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/readit/ReadIt.plist -------------------------------------------------------------------------------- /readit/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/readit/Tweak.xm -------------------------------------------------------------------------------- /readit/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/readit/control -------------------------------------------------------------------------------- /remindhome/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /remindhome/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /remindhome/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.macs.remindhome_1.0-122+debug_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /remindhome/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /remindhome/.theos/packages/com.macs.lockstock-0.0.1: -------------------------------------------------------------------------------- 1 | 35 -------------------------------------------------------------------------------- /remindhome/.theos/packages/com.macs.remindhome-1.0: -------------------------------------------------------------------------------- 1 | 122 -------------------------------------------------------------------------------- /remindhome/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/remindhome/Makefile -------------------------------------------------------------------------------- /remindhome/RemindHome.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/remindhome/RemindHome.plist -------------------------------------------------------------------------------- /remindhome/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/remindhome/Tweak.xm -------------------------------------------------------------------------------- /remindhome/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/remindhome/control -------------------------------------------------------------------------------- /remindhome/libcolorpicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/remindhome/libcolorpicker.h -------------------------------------------------------------------------------- /remindhome/remindhome.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/remindhome/remindhome.zip -------------------------------------------------------------------------------- /santanderbypass/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /santanderbypass/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /santanderbypass/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /santanderbypass/.theos/packages/com.macs.santanderbypass-0.0.1: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /santanderbypass/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/santanderbypass/Makefile -------------------------------------------------------------------------------- /santanderbypass/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/santanderbypass/Tweak.xm -------------------------------------------------------------------------------- /santanderbypass/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/santanderbypass/control -------------------------------------------------------------------------------- /sleekmessages/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sleekmessages/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sleekmessages/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/sleekmessages/Makefile -------------------------------------------------------------------------------- /sleekmessages/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/sleekmessages/Tweak.xm -------------------------------------------------------------------------------- /sleekmessages/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/sleekmessages/control -------------------------------------------------------------------------------- /sleekmusicls/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sleekmusicls/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sleekmusicls/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sleekmusicls/.theos/packages/com.macs.auxilium.sleekmusicls-0.0.1: -------------------------------------------------------------------------------- 1 | 7 -------------------------------------------------------------------------------- /sleekmusicls/MTPlatterView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/sleekmusicls/MTPlatterView.h -------------------------------------------------------------------------------- /sleekmusicls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/sleekmusicls/Makefile -------------------------------------------------------------------------------- /sleekmusicls/SleekMusicLS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/sleekmusicls/SleekMusicLS.plist -------------------------------------------------------------------------------- /sleekmusicls/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/sleekmusicls/Tweak.xm -------------------------------------------------------------------------------- /sleekmusicls/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/sleekmusicls/control -------------------------------------------------------------------------------- /sleeknotifs/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sleeknotifs/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sleeknotifs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/sleeknotifs/Makefile -------------------------------------------------------------------------------- /sleeknotifs/SleekNotifs.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/sleeknotifs/SleekNotifs.plist -------------------------------------------------------------------------------- /sleeknotifs/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/sleeknotifs/Tweak.xm -------------------------------------------------------------------------------- /sleeknotifs/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/sleeknotifs/control -------------------------------------------------------------------------------- /slices/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slices/.theos/obj/Model/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slices/.theos/obj/Model/SSKeychain/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slices/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slices/.theos/obj/debug/Model/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slices/.theos/obj/debug/Model/Expetelek/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slices/.theos/obj/debug/Model/SSKeychain/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slices/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/slices/Makefile -------------------------------------------------------------------------------- /slices/Model/AppGroupSlicer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/slices/Model/AppGroupSlicer.h -------------------------------------------------------------------------------- /slices/Model/AppGroupSlicer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/slices/Model/AppGroupSlicer.mm -------------------------------------------------------------------------------- /slices/Model/FolderMigrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/slices/Model/FolderMigrator.h -------------------------------------------------------------------------------- /slices/Model/FolderMigrator.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/slices/Model/FolderMigrator.mm -------------------------------------------------------------------------------- /slices/Model/RawSlicer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/slices/Model/RawSlicer.h -------------------------------------------------------------------------------- /slices/Model/RawSlicer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/slices/Model/RawSlicer.mm -------------------------------------------------------------------------------- /slices/Model/SliceSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/slices/Model/SliceSetting.h -------------------------------------------------------------------------------- /slices/Model/SliceSetting.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/slices/Model/SliceSetting.mm -------------------------------------------------------------------------------- /slices/Model/Slicer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/slices/Model/Slicer.h -------------------------------------------------------------------------------- /slices/Model/Slicer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/slices/Model/Slicer.mm -------------------------------------------------------------------------------- /slices/Slices.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/slices/Slices.plist -------------------------------------------------------------------------------- /slices/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/slices/Tweak.xm -------------------------------------------------------------------------------- /slices/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/slices/control -------------------------------------------------------------------------------- /slices/slices.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/slices/slices.sublime-project -------------------------------------------------------------------------------- /slices/slices.sublime-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/slices/slices.sublime-workspace -------------------------------------------------------------------------------- /slidepercent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/slidepercent/Makefile -------------------------------------------------------------------------------- /slidepercent/Slidepercent.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/slidepercent/Slidepercent.plist -------------------------------------------------------------------------------- /slidepercent/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/slidepercent/Tweak.xm -------------------------------------------------------------------------------- /slidepercent/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/slidepercent/control -------------------------------------------------------------------------------- /statusnotifications/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/statusnotifications/Makefile -------------------------------------------------------------------------------- /statusnotifications/SNTNotificationRequestController.h: -------------------------------------------------------------------------------- 1 | @interface SNTNotificationRequestController : NSObject 2 | @end 3 | -------------------------------------------------------------------------------- /statusnotifications/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/statusnotifications/Tweak.xm -------------------------------------------------------------------------------- /statusnotifications/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/statusnotifications/control -------------------------------------------------------------------------------- /sweetscreen/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sweetscreen/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sweetscreen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/sweetscreen/Makefile -------------------------------------------------------------------------------- /sweetscreen/SweetScreen.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/sweetscreen/SweetScreen.plist -------------------------------------------------------------------------------- /sweetscreen/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/sweetscreen/Tweak.xm -------------------------------------------------------------------------------- /sweetscreen/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/sweetscreen/control -------------------------------------------------------------------------------- /switchease/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /switchease/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /switchease/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.macs.switchease_0.0.1-3+debug_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /switchease/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /switchease/.theos/packages/com.macs.switchease-0.0.1: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /switchease/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/switchease/Makefile -------------------------------------------------------------------------------- /switchease/Switchease.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/switchease/Switchease.plist -------------------------------------------------------------------------------- /switchease/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/switchease/Tweak.xm -------------------------------------------------------------------------------- /switchease/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/switchease/control -------------------------------------------------------------------------------- /switcher/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /switcher/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /switcher/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/switcher/Makefile -------------------------------------------------------------------------------- /switcher/Switcher.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/switcher/Switcher.plist -------------------------------------------------------------------------------- /switcher/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/switcher/Tweak.xm -------------------------------------------------------------------------------- /switcher/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/switcher/control -------------------------------------------------------------------------------- /switcher/switcherprefs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/switcher/switcherprefs/Makefile -------------------------------------------------------------------------------- /switcherview11/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /switcherview11/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /switcherview11/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /switcherview11/.theos/packages/com.macs.switcherview11-0.0.1: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /switcherview11/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/switcherview11/Makefile -------------------------------------------------------------------------------- /switcherview11/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/switcherview11/Tweak.xm -------------------------------------------------------------------------------- /switcherview11/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/switcherview11/control -------------------------------------------------------------------------------- /taptaputils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/taptaputils/Makefile -------------------------------------------------------------------------------- /taptaputils/TapTapUtils.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/taptaputils/TapTapUtils.plist -------------------------------------------------------------------------------- /taptaputils/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/taptaputils/Tweak.xm -------------------------------------------------------------------------------- /taptaputils/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/taptaputils/control -------------------------------------------------------------------------------- /test3/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/test3/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /test3/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test3/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test3/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/test3_0.0.1-1+debug_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /test3/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test3/.theos/packages/test3-0.0.1: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /test3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/test3/Makefile -------------------------------------------------------------------------------- /test3/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/test3/Tweak.xm -------------------------------------------------------------------------------- /test3/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/test3/control -------------------------------------------------------------------------------- /test3/test3.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/test3/test3.plist -------------------------------------------------------------------------------- /testtweak/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testtweak/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testtweak/.theos/last_package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/testtweak/.theos/last_package -------------------------------------------------------------------------------- /testtweak/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testtweak/.theos/packages/com.yourcompany.testtweak-0.0.1: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /testtweak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/testtweak/Makefile -------------------------------------------------------------------------------- /testtweak/TestTweak.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/testtweak/TestTweak.plist -------------------------------------------------------------------------------- /testtweak/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/testtweak/Tweak.xm -------------------------------------------------------------------------------- /testtweak/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/testtweak/control -------------------------------------------------------------------------------- /toggleanywhere/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toggleanywhere/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toggleanywhere/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/toggleanywhere/Makefile -------------------------------------------------------------------------------- /toggleanywhere/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/toggleanywhere/Tweak.xm -------------------------------------------------------------------------------- /toggleanywhere/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/toggleanywhere/control -------------------------------------------------------------------------------- /unplugged/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unplugged/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unplugged/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.macs.unplugged_0.0.1-6+debug_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /unplugged/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unplugged/.theos/packages/com.macs.unplugged-0.0.1: -------------------------------------------------------------------------------- 1 | 6 -------------------------------------------------------------------------------- /unplugged/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/unplugged/Makefile -------------------------------------------------------------------------------- /unplugged/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/unplugged/Tweak.xm -------------------------------------------------------------------------------- /unplugged/UnPlugged.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/unplugged/UnPlugged.plist -------------------------------------------------------------------------------- /unplugged/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/unplugged/control -------------------------------------------------------------------------------- /welcomelock/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /welcomelock/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /welcomelock/.theos/last_package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/welcomelock/.theos/last_package -------------------------------------------------------------------------------- /welcomelock/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /welcomelock/.theos/packages/com.macs.welcomelock-0.0.1: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /welcomelock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/welcomelock/Makefile -------------------------------------------------------------------------------- /welcomelock/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/welcomelock/Tweak.xm -------------------------------------------------------------------------------- /welcomelock/WelcomeLock.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/welcomelock/WelcomeLock.plist -------------------------------------------------------------------------------- /welcomelock/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/welcomelock/control -------------------------------------------------------------------------------- /wetunlock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/wetunlock/Makefile -------------------------------------------------------------------------------- /wetunlock/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/wetunlock/Tweak.xm -------------------------------------------------------------------------------- /wetunlock/WetUnlock.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/wetunlock/WetUnlock.plist -------------------------------------------------------------------------------- /wetunlock/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/iOS-Project-Archive/HEAD/wetunlock/control --------------------------------------------------------------------------------