├── .theos ├── fakeroot ├── last_package └── packages │ └── com.naken.notificatcher-1.0 ├── MakePackageInstall ├── Makefile ├── Notificatcher.plist ├── PreferenceBundles └── NotificatcherPB.bundle │ ├── Info.plist │ ├── NotificatcherPB │ ├── icon.png │ └── icon@2x.png ├── PreferenceLoader └── Preferences │ └── NotificatcherPB.plist ├── Tweak.xm ├── control ├── notificatcherpb ├── .theos │ ├── last_package │ └── packages │ │ └── com.naken.notificatcherpb-1.0 ├── MakePackage ├── Makefile ├── NotificatcherPB.mm ├── Resources │ ├── Info.plist │ ├── icon.png │ └── icon@2x.png ├── entry.plist └── theos └── theos /.theos/fakeroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iosre/Notificatcher/HEAD/.theos/fakeroot -------------------------------------------------------------------------------- /.theos/last_package: -------------------------------------------------------------------------------- 1 | ./com.naken.notificatcher_1.0-40_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /.theos/packages/com.naken.notificatcher-1.0: -------------------------------------------------------------------------------- 1 | 40 -------------------------------------------------------------------------------- /MakePackageInstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iosre/Notificatcher/HEAD/MakePackageInstall -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iosre/Notificatcher/HEAD/Makefile -------------------------------------------------------------------------------- /Notificatcher.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iosre/Notificatcher/HEAD/Notificatcher.plist -------------------------------------------------------------------------------- /PreferenceBundles/NotificatcherPB.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iosre/Notificatcher/HEAD/PreferenceBundles/NotificatcherPB.bundle/Info.plist -------------------------------------------------------------------------------- /PreferenceBundles/NotificatcherPB.bundle/NotificatcherPB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iosre/Notificatcher/HEAD/PreferenceBundles/NotificatcherPB.bundle/NotificatcherPB -------------------------------------------------------------------------------- /PreferenceBundles/NotificatcherPB.bundle/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iosre/Notificatcher/HEAD/PreferenceBundles/NotificatcherPB.bundle/icon.png -------------------------------------------------------------------------------- /PreferenceBundles/NotificatcherPB.bundle/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iosre/Notificatcher/HEAD/PreferenceBundles/NotificatcherPB.bundle/icon@2x.png -------------------------------------------------------------------------------- /PreferenceLoader/Preferences/NotificatcherPB.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iosre/Notificatcher/HEAD/PreferenceLoader/Preferences/NotificatcherPB.plist -------------------------------------------------------------------------------- /Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iosre/Notificatcher/HEAD/Tweak.xm -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iosre/Notificatcher/HEAD/control -------------------------------------------------------------------------------- /notificatcherpb/.theos/last_package: -------------------------------------------------------------------------------- 1 | ./com.naken.notificatcherpb_1.0-25_iphoneos-arm.deb 2 | -------------------------------------------------------------------------------- /notificatcherpb/.theos/packages/com.naken.notificatcherpb-1.0: -------------------------------------------------------------------------------- 1 | 25 -------------------------------------------------------------------------------- /notificatcherpb/MakePackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iosre/Notificatcher/HEAD/notificatcherpb/MakePackage -------------------------------------------------------------------------------- /notificatcherpb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iosre/Notificatcher/HEAD/notificatcherpb/Makefile -------------------------------------------------------------------------------- /notificatcherpb/NotificatcherPB.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iosre/Notificatcher/HEAD/notificatcherpb/NotificatcherPB.mm -------------------------------------------------------------------------------- /notificatcherpb/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iosre/Notificatcher/HEAD/notificatcherpb/Resources/Info.plist -------------------------------------------------------------------------------- /notificatcherpb/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iosre/Notificatcher/HEAD/notificatcherpb/Resources/icon.png -------------------------------------------------------------------------------- /notificatcherpb/Resources/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iosre/Notificatcher/HEAD/notificatcherpb/Resources/icon@2x.png -------------------------------------------------------------------------------- /notificatcherpb/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iosre/Notificatcher/HEAD/notificatcherpb/entry.plist -------------------------------------------------------------------------------- /notificatcherpb/theos: -------------------------------------------------------------------------------- 1 | /opt/theos -------------------------------------------------------------------------------- /theos: -------------------------------------------------------------------------------- 1 | /opt/theos --------------------------------------------------------------------------------