├── README.md ├── cycript └── CycriptDemo │ ├── CycriptDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── CycriptDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ScoreKeeper.h │ ├── ScoreKeeper.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── highnoon ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── HighNoon.dylib │ │ │ ├── HighNoon.plist │ │ │ └── com.zanehelton.highnoon.bundle │ │ │ └── snoop.png │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── HighNoon.dylib │ │ │ ├── arm64 │ │ │ ├── HighNoon.dylib │ │ │ ├── Tweak.xm.90286aad.o │ │ │ ├── Tweak.xm.954ce12c.o │ │ │ └── Tweak.xm.c552c365.o │ │ │ ├── armv7 │ │ │ ├── HighNoon.dylib │ │ │ ├── Tweak.xm.33f043ce.o │ │ │ ├── Tweak.xm.63ba64d6.o │ │ │ └── Tweak.xm.9cdac617.o │ │ │ └── com.zanehelton.highnoon.bundle │ │ │ └── snoop.png │ └── packages │ │ └── com.zanehelton.highnoon-0.0.1 ├── HighNoon.plist ├── Makefile ├── Resources │ └── snoop.png ├── Tweak.xm └── control ├── moduleviews ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ ├── Application Support │ │ │ └── ModuleViews.bundle │ │ │ │ └── bob-saget.png │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── ModuleViews.dylib │ │ │ └── ModuleViews.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── ModuleViews.dylib │ │ │ ├── arm64 │ │ │ ├── ModuleViews.dylib │ │ │ ├── ModuleViews.dylib.dSYM │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ └── ModuleViews.dylib │ │ │ └── Tweak.xm.a3049ce2.o │ │ │ └── armv7 │ │ │ ├── ModuleViews.dylib │ │ │ ├── ModuleViews.dylib.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── ModuleViews.dylib │ │ │ └── Tweak.xm.d8ea1ca2.o │ └── packages │ │ └── com.zanehelton.moduleviews-0.0.1 ├── Makefile ├── ModuleViews.plist ├── Resources │ └── bob-saget.png ├── Tweak.xm └── control ├── popup ├── .theos │ ├── build_session │ ├── fakeroot │ ├── last_package │ └── packages │ │ └── com.zanehelton.popup-0.0.1 ├── Listener.xm ├── Makefile ├── Popup.plist ├── Preferences.plist └── control ├── proofofconcept ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── ProofOfConcept.dylib │ │ │ └── ProofOfConcept.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── ProofOfConcept.dylib │ │ │ ├── arm64 │ │ │ ├── ProofOfConcept.dylib │ │ │ └── Tweak.xm.e24022a3.o │ │ │ └── armv7 │ │ │ ├── ProofOfConcept.dylib │ │ │ └── Tweak.xm.807aa640.o │ └── packages │ │ └── com.yourcompany.proofofconcept-0.0.1 ├── Makefile ├── ProofOfConcept.plist ├── Tweak.xm └── control ├── redrectangle ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── RedRectangle.dylib │ │ │ └── RedRectangle.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── RedRectangle.dylib │ │ │ ├── arm64 │ │ │ ├── RedRectangle.dylib │ │ │ ├── RedRectangle.dylib.dSYM │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ └── RedRectangle.dylib │ │ │ └── Tweak.xm.cf97be37.o │ │ │ └── armv7 │ │ │ ├── RedRectangle.dylib │ │ │ ├── RedRectangle.dylib.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── RedRectangle.dylib │ │ │ └── Tweak.xm.e570c8c3.o │ └── packages │ │ └── com.zanehelton.redrectangle-0.0.1 ├── Makefile ├── RedRectangle.plist ├── Tweak.xm └── control └── showbatteries ├── .theos ├── _ │ ├── DEBIAN │ │ └── control │ └── Library │ │ └── MobileSubstrate │ │ └── DynamicLibraries │ │ ├── ShowBatteries.dylib │ │ └── ShowBatteries.plist ├── build_session ├── fakeroot ├── last_package ├── obj │ └── debug │ │ ├── .stamp │ │ ├── ShowBatteries.dylib │ │ ├── arm64 │ │ ├── ShowBatteries.dylib │ │ ├── ShowBatteries.dylib.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── ShowBatteries.dylib │ │ └── Tweak.xm.6f51964e.o │ │ └── armv7 │ │ ├── ShowBatteries.dylib │ │ ├── ShowBatteries.dylib.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── ShowBatteries.dylib │ │ └── Tweak.xm.a459a67b.o └── packages │ └── com.zanehelton.showbatteries-0.0.1 ├── Makefile ├── ShowBatteries.plist ├── Tweak.xm ├── control └── packages └── com.zanehelton.showbatteries_0.0.1-1+debug_iphoneos-arm.deb /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/README.md -------------------------------------------------------------------------------- /cycript/CycriptDemo/CycriptDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/cycript/CycriptDemo/CycriptDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /cycript/CycriptDemo/CycriptDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/cycript/CycriptDemo/CycriptDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /cycript/CycriptDemo/CycriptDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/cycript/CycriptDemo/CycriptDemo/AppDelegate.h -------------------------------------------------------------------------------- /cycript/CycriptDemo/CycriptDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/cycript/CycriptDemo/CycriptDemo/AppDelegate.m -------------------------------------------------------------------------------- /cycript/CycriptDemo/CycriptDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/cycript/CycriptDemo/CycriptDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /cycript/CycriptDemo/CycriptDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/cycript/CycriptDemo/CycriptDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /cycript/CycriptDemo/CycriptDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/cycript/CycriptDemo/CycriptDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /cycript/CycriptDemo/CycriptDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/cycript/CycriptDemo/CycriptDemo/Info.plist -------------------------------------------------------------------------------- /cycript/CycriptDemo/CycriptDemo/ScoreKeeper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/cycript/CycriptDemo/CycriptDemo/ScoreKeeper.h -------------------------------------------------------------------------------- /cycript/CycriptDemo/CycriptDemo/ScoreKeeper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/cycript/CycriptDemo/CycriptDemo/ScoreKeeper.m -------------------------------------------------------------------------------- /cycript/CycriptDemo/CycriptDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/cycript/CycriptDemo/CycriptDemo/ViewController.h -------------------------------------------------------------------------------- /cycript/CycriptDemo/CycriptDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/cycript/CycriptDemo/CycriptDemo/ViewController.m -------------------------------------------------------------------------------- /cycript/CycriptDemo/CycriptDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/cycript/CycriptDemo/CycriptDemo/main.m -------------------------------------------------------------------------------- /highnoon/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/highnoon/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /highnoon/.theos/_/Library/MobileSubstrate/DynamicLibraries/HighNoon.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/highnoon/.theos/_/Library/MobileSubstrate/DynamicLibraries/HighNoon.dylib -------------------------------------------------------------------------------- /highnoon/.theos/_/Library/MobileSubstrate/DynamicLibraries/HighNoon.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/highnoon/.theos/_/Library/MobileSubstrate/DynamicLibraries/HighNoon.plist -------------------------------------------------------------------------------- /highnoon/.theos/_/Library/MobileSubstrate/DynamicLibraries/com.zanehelton.highnoon.bundle/snoop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/highnoon/.theos/_/Library/MobileSubstrate/DynamicLibraries/com.zanehelton.highnoon.bundle/snoop.png -------------------------------------------------------------------------------- /highnoon/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /highnoon/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /highnoon/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.zanehelton.highnoon_0.0.1-9+debug_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /highnoon/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /highnoon/.theos/obj/debug/HighNoon.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/highnoon/.theos/obj/debug/HighNoon.dylib -------------------------------------------------------------------------------- /highnoon/.theos/obj/debug/arm64/HighNoon.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/highnoon/.theos/obj/debug/arm64/HighNoon.dylib -------------------------------------------------------------------------------- /highnoon/.theos/obj/debug/arm64/Tweak.xm.90286aad.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/highnoon/.theos/obj/debug/arm64/Tweak.xm.90286aad.o -------------------------------------------------------------------------------- /highnoon/.theos/obj/debug/arm64/Tweak.xm.954ce12c.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/highnoon/.theos/obj/debug/arm64/Tweak.xm.954ce12c.o -------------------------------------------------------------------------------- /highnoon/.theos/obj/debug/arm64/Tweak.xm.c552c365.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/highnoon/.theos/obj/debug/arm64/Tweak.xm.c552c365.o -------------------------------------------------------------------------------- /highnoon/.theos/obj/debug/armv7/HighNoon.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/highnoon/.theos/obj/debug/armv7/HighNoon.dylib -------------------------------------------------------------------------------- /highnoon/.theos/obj/debug/armv7/Tweak.xm.33f043ce.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/highnoon/.theos/obj/debug/armv7/Tweak.xm.33f043ce.o -------------------------------------------------------------------------------- /highnoon/.theos/obj/debug/armv7/Tweak.xm.63ba64d6.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/highnoon/.theos/obj/debug/armv7/Tweak.xm.63ba64d6.o -------------------------------------------------------------------------------- /highnoon/.theos/obj/debug/armv7/Tweak.xm.9cdac617.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/highnoon/.theos/obj/debug/armv7/Tweak.xm.9cdac617.o -------------------------------------------------------------------------------- /highnoon/.theos/obj/debug/com.zanehelton.highnoon.bundle/snoop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/highnoon/.theos/obj/debug/com.zanehelton.highnoon.bundle/snoop.png -------------------------------------------------------------------------------- /highnoon/.theos/packages/com.zanehelton.highnoon-0.0.1: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /highnoon/HighNoon.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/highnoon/HighNoon.plist -------------------------------------------------------------------------------- /highnoon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/highnoon/Makefile -------------------------------------------------------------------------------- /highnoon/Resources/snoop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/highnoon/Resources/snoop.png -------------------------------------------------------------------------------- /highnoon/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/highnoon/Tweak.xm -------------------------------------------------------------------------------- /highnoon/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/highnoon/control -------------------------------------------------------------------------------- /moduleviews/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/moduleviews/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /moduleviews/.theos/_/Library/Application Support/ModuleViews.bundle/bob-saget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/moduleviews/.theos/_/Library/Application Support/ModuleViews.bundle/bob-saget.png -------------------------------------------------------------------------------- /moduleviews/.theos/_/Library/MobileSubstrate/DynamicLibraries/ModuleViews.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/moduleviews/.theos/_/Library/MobileSubstrate/DynamicLibraries/ModuleViews.dylib -------------------------------------------------------------------------------- /moduleviews/.theos/_/Library/MobileSubstrate/DynamicLibraries/ModuleViews.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/moduleviews/.theos/_/Library/MobileSubstrate/DynamicLibraries/ModuleViews.plist -------------------------------------------------------------------------------- /moduleviews/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moduleviews/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moduleviews/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.zanehelton.moduleviews_0.0.1-4+debug_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /moduleviews/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moduleviews/.theos/obj/debug/ModuleViews.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/moduleviews/.theos/obj/debug/ModuleViews.dylib -------------------------------------------------------------------------------- /moduleviews/.theos/obj/debug/arm64/ModuleViews.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/moduleviews/.theos/obj/debug/arm64/ModuleViews.dylib -------------------------------------------------------------------------------- /moduleviews/.theos/obj/debug/arm64/ModuleViews.dylib.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/moduleviews/.theos/obj/debug/arm64/ModuleViews.dylib.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /moduleviews/.theos/obj/debug/arm64/ModuleViews.dylib.dSYM/Contents/Resources/DWARF/ModuleViews.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/moduleviews/.theos/obj/debug/arm64/ModuleViews.dylib.dSYM/Contents/Resources/DWARF/ModuleViews.dylib -------------------------------------------------------------------------------- /moduleviews/.theos/obj/debug/arm64/Tweak.xm.a3049ce2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/moduleviews/.theos/obj/debug/arm64/Tweak.xm.a3049ce2.o -------------------------------------------------------------------------------- /moduleviews/.theos/obj/debug/armv7/ModuleViews.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/moduleviews/.theos/obj/debug/armv7/ModuleViews.dylib -------------------------------------------------------------------------------- /moduleviews/.theos/obj/debug/armv7/ModuleViews.dylib.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/moduleviews/.theos/obj/debug/armv7/ModuleViews.dylib.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /moduleviews/.theos/obj/debug/armv7/ModuleViews.dylib.dSYM/Contents/Resources/DWARF/ModuleViews.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/moduleviews/.theos/obj/debug/armv7/ModuleViews.dylib.dSYM/Contents/Resources/DWARF/ModuleViews.dylib -------------------------------------------------------------------------------- /moduleviews/.theos/obj/debug/armv7/Tweak.xm.d8ea1ca2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/moduleviews/.theos/obj/debug/armv7/Tweak.xm.d8ea1ca2.o -------------------------------------------------------------------------------- /moduleviews/.theos/packages/com.zanehelton.moduleviews-0.0.1: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /moduleviews/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/moduleviews/Makefile -------------------------------------------------------------------------------- /moduleviews/ModuleViews.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/moduleviews/ModuleViews.plist -------------------------------------------------------------------------------- /moduleviews/Resources/bob-saget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/moduleviews/Resources/bob-saget.png -------------------------------------------------------------------------------- /moduleviews/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/moduleviews/Tweak.xm -------------------------------------------------------------------------------- /moduleviews/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/moduleviews/control -------------------------------------------------------------------------------- /popup/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /popup/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /popup/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./packages/com.zanehelton.popup_0.0.1-12+debug_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /popup/.theos/packages/com.zanehelton.popup-0.0.1: -------------------------------------------------------------------------------- 1 | 12 -------------------------------------------------------------------------------- /popup/Listener.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/popup/Listener.xm -------------------------------------------------------------------------------- /popup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/popup/Makefile -------------------------------------------------------------------------------- /popup/Popup.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/popup/Popup.plist -------------------------------------------------------------------------------- /popup/Preferences.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/popup/Preferences.plist -------------------------------------------------------------------------------- /popup/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/popup/control -------------------------------------------------------------------------------- /proofofconcept/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/proofofconcept/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /proofofconcept/.theos/_/Library/MobileSubstrate/DynamicLibraries/ProofOfConcept.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/proofofconcept/.theos/_/Library/MobileSubstrate/DynamicLibraries/ProofOfConcept.dylib -------------------------------------------------------------------------------- /proofofconcept/.theos/_/Library/MobileSubstrate/DynamicLibraries/ProofOfConcept.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/proofofconcept/.theos/_/Library/MobileSubstrate/DynamicLibraries/ProofOfConcept.plist -------------------------------------------------------------------------------- /proofofconcept/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proofofconcept/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proofofconcept/.theos/last_package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/proofofconcept/.theos/last_package -------------------------------------------------------------------------------- /proofofconcept/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proofofconcept/.theos/obj/debug/ProofOfConcept.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/proofofconcept/.theos/obj/debug/ProofOfConcept.dylib -------------------------------------------------------------------------------- /proofofconcept/.theos/obj/debug/arm64/ProofOfConcept.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/proofofconcept/.theos/obj/debug/arm64/ProofOfConcept.dylib -------------------------------------------------------------------------------- /proofofconcept/.theos/obj/debug/arm64/Tweak.xm.e24022a3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/proofofconcept/.theos/obj/debug/arm64/Tweak.xm.e24022a3.o -------------------------------------------------------------------------------- /proofofconcept/.theos/obj/debug/armv7/ProofOfConcept.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/proofofconcept/.theos/obj/debug/armv7/ProofOfConcept.dylib -------------------------------------------------------------------------------- /proofofconcept/.theos/obj/debug/armv7/Tweak.xm.807aa640.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/proofofconcept/.theos/obj/debug/armv7/Tweak.xm.807aa640.o -------------------------------------------------------------------------------- /proofofconcept/.theos/packages/com.yourcompany.proofofconcept-0.0.1: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /proofofconcept/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/proofofconcept/Makefile -------------------------------------------------------------------------------- /proofofconcept/ProofOfConcept.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/proofofconcept/ProofOfConcept.plist -------------------------------------------------------------------------------- /proofofconcept/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/proofofconcept/Tweak.xm -------------------------------------------------------------------------------- /proofofconcept/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/proofofconcept/control -------------------------------------------------------------------------------- /redrectangle/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/redrectangle/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /redrectangle/.theos/_/Library/MobileSubstrate/DynamicLibraries/RedRectangle.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/redrectangle/.theos/_/Library/MobileSubstrate/DynamicLibraries/RedRectangle.dylib -------------------------------------------------------------------------------- /redrectangle/.theos/_/Library/MobileSubstrate/DynamicLibraries/RedRectangle.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/redrectangle/.theos/_/Library/MobileSubstrate/DynamicLibraries/RedRectangle.plist -------------------------------------------------------------------------------- /redrectangle/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /redrectangle/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /redrectangle/.theos/last_package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/redrectangle/.theos/last_package -------------------------------------------------------------------------------- /redrectangle/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /redrectangle/.theos/obj/debug/RedRectangle.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/redrectangle/.theos/obj/debug/RedRectangle.dylib -------------------------------------------------------------------------------- /redrectangle/.theos/obj/debug/arm64/RedRectangle.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/redrectangle/.theos/obj/debug/arm64/RedRectangle.dylib -------------------------------------------------------------------------------- /redrectangle/.theos/obj/debug/arm64/RedRectangle.dylib.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/redrectangle/.theos/obj/debug/arm64/RedRectangle.dylib.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /redrectangle/.theos/obj/debug/arm64/RedRectangle.dylib.dSYM/Contents/Resources/DWARF/RedRectangle.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/redrectangle/.theos/obj/debug/arm64/RedRectangle.dylib.dSYM/Contents/Resources/DWARF/RedRectangle.dylib -------------------------------------------------------------------------------- /redrectangle/.theos/obj/debug/arm64/Tweak.xm.cf97be37.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/redrectangle/.theos/obj/debug/arm64/Tweak.xm.cf97be37.o -------------------------------------------------------------------------------- /redrectangle/.theos/obj/debug/armv7/RedRectangle.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/redrectangle/.theos/obj/debug/armv7/RedRectangle.dylib -------------------------------------------------------------------------------- /redrectangle/.theos/obj/debug/armv7/RedRectangle.dylib.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/redrectangle/.theos/obj/debug/armv7/RedRectangle.dylib.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /redrectangle/.theos/obj/debug/armv7/RedRectangle.dylib.dSYM/Contents/Resources/DWARF/RedRectangle.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/redrectangle/.theos/obj/debug/armv7/RedRectangle.dylib.dSYM/Contents/Resources/DWARF/RedRectangle.dylib -------------------------------------------------------------------------------- /redrectangle/.theos/obj/debug/armv7/Tweak.xm.e570c8c3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/redrectangle/.theos/obj/debug/armv7/Tweak.xm.e570c8c3.o -------------------------------------------------------------------------------- /redrectangle/.theos/packages/com.zanehelton.redrectangle-0.0.1: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /redrectangle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/redrectangle/Makefile -------------------------------------------------------------------------------- /redrectangle/RedRectangle.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/redrectangle/RedRectangle.plist -------------------------------------------------------------------------------- /redrectangle/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/redrectangle/Tweak.xm -------------------------------------------------------------------------------- /redrectangle/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/redrectangle/control -------------------------------------------------------------------------------- /showbatteries/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/showbatteries/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /showbatteries/.theos/_/Library/MobileSubstrate/DynamicLibraries/ShowBatteries.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/showbatteries/.theos/_/Library/MobileSubstrate/DynamicLibraries/ShowBatteries.dylib -------------------------------------------------------------------------------- /showbatteries/.theos/_/Library/MobileSubstrate/DynamicLibraries/ShowBatteries.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/showbatteries/.theos/_/Library/MobileSubstrate/DynamicLibraries/ShowBatteries.plist -------------------------------------------------------------------------------- /showbatteries/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /showbatteries/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /showbatteries/.theos/last_package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/showbatteries/.theos/last_package -------------------------------------------------------------------------------- /showbatteries/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /showbatteries/.theos/obj/debug/ShowBatteries.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/showbatteries/.theos/obj/debug/ShowBatteries.dylib -------------------------------------------------------------------------------- /showbatteries/.theos/obj/debug/arm64/ShowBatteries.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/showbatteries/.theos/obj/debug/arm64/ShowBatteries.dylib -------------------------------------------------------------------------------- /showbatteries/.theos/obj/debug/arm64/ShowBatteries.dylib.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/showbatteries/.theos/obj/debug/arm64/ShowBatteries.dylib.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /showbatteries/.theos/obj/debug/arm64/ShowBatteries.dylib.dSYM/Contents/Resources/DWARF/ShowBatteries.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/showbatteries/.theos/obj/debug/arm64/ShowBatteries.dylib.dSYM/Contents/Resources/DWARF/ShowBatteries.dylib -------------------------------------------------------------------------------- /showbatteries/.theos/obj/debug/arm64/Tweak.xm.6f51964e.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/showbatteries/.theos/obj/debug/arm64/Tweak.xm.6f51964e.o -------------------------------------------------------------------------------- /showbatteries/.theos/obj/debug/armv7/ShowBatteries.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/showbatteries/.theos/obj/debug/armv7/ShowBatteries.dylib -------------------------------------------------------------------------------- /showbatteries/.theos/obj/debug/armv7/ShowBatteries.dylib.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/showbatteries/.theos/obj/debug/armv7/ShowBatteries.dylib.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /showbatteries/.theos/obj/debug/armv7/ShowBatteries.dylib.dSYM/Contents/Resources/DWARF/ShowBatteries.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/showbatteries/.theos/obj/debug/armv7/ShowBatteries.dylib.dSYM/Contents/Resources/DWARF/ShowBatteries.dylib -------------------------------------------------------------------------------- /showbatteries/.theos/obj/debug/armv7/Tweak.xm.a459a67b.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/showbatteries/.theos/obj/debug/armv7/Tweak.xm.a459a67b.o -------------------------------------------------------------------------------- /showbatteries/.theos/packages/com.zanehelton.showbatteries-0.0.1: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /showbatteries/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/showbatteries/Makefile -------------------------------------------------------------------------------- /showbatteries/ShowBatteries.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/showbatteries/ShowBatteries.plist -------------------------------------------------------------------------------- /showbatteries/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/showbatteries/Tweak.xm -------------------------------------------------------------------------------- /showbatteries/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/showbatteries/control -------------------------------------------------------------------------------- /showbatteries/packages/com.zanehelton.showbatteries_0.0.1-1+debug_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneH/tweak-series/HEAD/showbatteries/packages/com.zanehelton.showbatteries_0.0.1-1+debug_iphoneos-arm.deb --------------------------------------------------------------------------------