├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── Makefile ├── README.md ├── StopShortcutsNotifications.plist ├── after.gif ├── before.gif ├── control ├── stopshortcutsnotifications ├── Makefile ├── Resources │ ├── Info.plist │ ├── Root.plist │ └── paypal@2x.png ├── SSNRootListController.h ├── SSNRootListController.mm └── entry.plist ├── tweak.h └── tweak.xm /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsjafer/StopShortcutsNotifications/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .theos/* 2 | packages/* -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsjafer/StopShortcutsNotifications/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsjafer/StopShortcutsNotifications/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsjafer/StopShortcutsNotifications/HEAD/README.md -------------------------------------------------------------------------------- /StopShortcutsNotifications.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsjafer/StopShortcutsNotifications/HEAD/StopShortcutsNotifications.plist -------------------------------------------------------------------------------- /after.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsjafer/StopShortcutsNotifications/HEAD/after.gif -------------------------------------------------------------------------------- /before.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsjafer/StopShortcutsNotifications/HEAD/before.gif -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsjafer/StopShortcutsNotifications/HEAD/control -------------------------------------------------------------------------------- /stopshortcutsnotifications/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsjafer/StopShortcutsNotifications/HEAD/stopshortcutsnotifications/Makefile -------------------------------------------------------------------------------- /stopshortcutsnotifications/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsjafer/StopShortcutsNotifications/HEAD/stopshortcutsnotifications/Resources/Info.plist -------------------------------------------------------------------------------- /stopshortcutsnotifications/Resources/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsjafer/StopShortcutsNotifications/HEAD/stopshortcutsnotifications/Resources/Root.plist -------------------------------------------------------------------------------- /stopshortcutsnotifications/Resources/paypal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsjafer/StopShortcutsNotifications/HEAD/stopshortcutsnotifications/Resources/paypal@2x.png -------------------------------------------------------------------------------- /stopshortcutsnotifications/SSNRootListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsjafer/StopShortcutsNotifications/HEAD/stopshortcutsnotifications/SSNRootListController.h -------------------------------------------------------------------------------- /stopshortcutsnotifications/SSNRootListController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsjafer/StopShortcutsNotifications/HEAD/stopshortcutsnotifications/SSNRootListController.mm -------------------------------------------------------------------------------- /stopshortcutsnotifications/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsjafer/StopShortcutsNotifications/HEAD/stopshortcutsnotifications/entry.plist -------------------------------------------------------------------------------- /tweak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsjafer/StopShortcutsNotifications/HEAD/tweak.h -------------------------------------------------------------------------------- /tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsjafer/StopShortcutsNotifications/HEAD/tweak.xm --------------------------------------------------------------------------------