gitextract__qh4tyrx/ ├── .theos/ │ ├── _/ │ │ ├── DEBIAN/ │ │ │ └── control │ │ ├── Library/ │ │ │ ├── ControlCenter/ │ │ │ │ └── Bundles/ │ │ │ │ └── ForwardNotifierCC.bundle/ │ │ │ │ ├── ForwardNotifierCC │ │ │ │ └── Info.plist │ │ │ ├── MobileSubstrate/ │ │ │ │ └── DynamicLibraries/ │ │ │ │ └── ForwardNotifier.plist │ │ │ ├── PreferenceBundles/ │ │ │ │ └── ForwardNotifier.bundle/ │ │ │ │ ├── ForwardNotifier │ │ │ │ ├── Info.plist │ │ │ │ └── Root.plist │ │ │ └── PreferenceLoader/ │ │ │ └── Preferences/ │ │ │ └── ForwardNotifier.plist │ │ └── usr/ │ │ └── bin/ │ │ └── ForwardNotifierReceiver │ ├── build_session │ ├── fakeroot │ ├── last_package │ └── obj/ │ ├── .stamp │ ├── ForwardNotifier.bundle/ │ │ ├── ForwardNotifier │ │ ├── Info.plist │ │ └── Root.plist │ ├── ForwardNotifierCC.bundle/ │ │ ├── ForwardNotifierCC │ │ └── Info.plist │ ├── ForwardNotifierReceiver │ ├── arm64/ │ │ ├── FNPRootListController.m.09745f32.Td │ │ ├── FNPRootListController.m.09745f32.o │ │ ├── FNPRootListController.m.a9e3cd08.Td │ │ ├── FNPRootListController.m.a9e3cd08.o │ │ ├── ForwardNotifier.bundle/ │ │ │ ├── ForwardNotifier │ │ │ └── ForwardNotifier.dSYM/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ └── Resources/ │ │ │ └── DWARF/ │ │ │ └── ForwardNotifier │ │ ├── ForwardNotifier.dylib.dSYM/ │ │ │ └── Contents/ │ │ │ └── Info.plist │ │ ├── ForwardNotifierCC.bundle/ │ │ │ ├── ForwardNotifierCC │ │ │ └── ForwardNotifierCC.dSYM/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ └── Resources/ │ │ │ └── DWARF/ │ │ │ └── ForwardNotifierCC │ │ ├── ForwardNotifierCC.m.b26de4cf.Td │ │ ├── ForwardNotifierCC.m.b26de4cf.o │ │ ├── ForwardNotifierReceiver │ │ ├── ForwardNotifierReceiver.dSYM/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ └── Resources/ │ │ │ └── DWARF/ │ │ │ └── ForwardNotifierReceiver │ │ ├── Tweak.x.10f0f3ca.Td │ │ ├── Tweak.x.10f0f3ca.o │ │ ├── Tweak.x.5dac7822.Td │ │ ├── Tweak.x.5dac7822.o │ │ ├── Tweak.x.653cbd7a.Td │ │ ├── Tweak.x.653cbd7a.o │ │ ├── Tweak.x.m │ │ ├── main.m.f318108f.Td │ │ └── main.m.f318108f.o │ └── arm64e/ │ ├── FNPRootListController.m.2caf96a5.Td │ ├── FNPRootListController.m.2caf96a5.o │ ├── FNPRootListController.m.f07d197f.Td │ ├── FNPRootListController.m.f07d197f.o │ ├── ForwardNotifier.bundle/ │ │ ├── ForwardNotifier │ │ └── ForwardNotifier.dSYM/ │ │ └── Contents/ │ │ ├── Info.plist │ │ └── Resources/ │ │ └── DWARF/ │ │ └── ForwardNotifier │ ├── ForwardNotifier.dylib.dSYM/ │ │ └── Contents/ │ │ └── Info.plist │ ├── ForwardNotifierCC.bundle/ │ │ ├── ForwardNotifierCC │ │ └── ForwardNotifierCC.dSYM/ │ │ └── Contents/ │ │ ├── Info.plist │ │ └── Resources/ │ │ └── DWARF/ │ │ └── ForwardNotifierCC │ ├── ForwardNotifierCC.m.98cdb3a4.Td │ ├── ForwardNotifierCC.m.98cdb3a4.o │ ├── ForwardNotifierReceiver │ ├── ForwardNotifierReceiver.dSYM/ │ │ └── Contents/ │ │ ├── Info.plist │ │ └── Resources/ │ │ └── DWARF/ │ │ └── ForwardNotifierReceiver │ ├── Tweak.x.586144b7.Td │ ├── Tweak.x.586144b7.o │ ├── Tweak.x.6472c773.Td │ ├── Tweak.x.6472c773.o │ ├── Tweak.x.9020a7f1.Td │ ├── Tweak.x.9020a7f1.o │ ├── Tweak.x.m │ ├── main.m.0135e4e0.Td │ └── main.m.0135e4e0.o ├── ForwardNotifier Client Tools/ │ └── Crossplatform Server/ │ ├── ForwardNotifierServer.py │ ├── Linux Autoinstall/ │ │ └── ForwardNotifierInstaller.bash │ ├── Mac Autoinstall/ │ │ └── ForwardNotifierInstaller.bash │ └── Windows Autoinstall/ │ └── Program.cs ├── ForwardNotifier.plist ├── LICENSE ├── Makefile ├── README.md ├── Tweak.h ├── Tweak.x ├── control ├── forwardnotifier/ │ ├── .theos/ │ │ ├── build_session │ │ └── obj/ │ │ └── .stamp │ ├── FNPRootListController.h │ ├── FNPRootListController.m │ ├── Makefile │ ├── Resources/ │ │ ├── Info.plist │ │ └── Root.plist │ └── entry.plist ├── forwardnotifiercc/ │ ├── ForwardNotifierCC.h │ ├── ForwardNotifierCC.m │ ├── Makefile │ ├── Resources/ │ │ └── Info.plist │ └── control ├── forwardnotifierreceiver/ │ ├── Makefile │ └── main.m └── packages/ └── com.greg0109.forwardnotifier_1.4.3_iphoneos-arm.deb