├── .gitignore ├── LICENSE ├── Makefile ├── Media ├── 1.png ├── 2-1.png ├── 2-2.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── Banner.png ├── Edit Mode.png ├── Face ID.png ├── Known List.png ├── Preferences 1.png ├── Preferences 2.png ├── Swipe Actions.png ├── Unknown List.png ├── iDunnoU Banner.sketch ├── iDunnoU.png └── iDunnoU.sketch ├── README.md ├── Tweak.h ├── Tweak.x ├── iDUBadgeButton.h ├── iDUBadgeButton.m ├── iDunnoU.plist ├── idunnoupreferences ├── Makefile ├── Resources │ ├── Info.plist │ ├── Root.plist │ ├── icon-stamp.png │ ├── icon.png │ ├── icon@2x.png │ └── icon@3x.png ├── entry.plist ├── iDURootListController.h └── iDURootListController.m └── layout └── DEBIAN ├── control ├── postinst └── postrm /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .theos/ 3 | packages/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/Makefile -------------------------------------------------------------------------------- /Media/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/Media/1.png -------------------------------------------------------------------------------- /Media/2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/Media/2-1.png -------------------------------------------------------------------------------- /Media/2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/Media/2-2.png -------------------------------------------------------------------------------- /Media/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/Media/2.png -------------------------------------------------------------------------------- /Media/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/Media/3.png -------------------------------------------------------------------------------- /Media/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/Media/4.png -------------------------------------------------------------------------------- /Media/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/Media/5.png -------------------------------------------------------------------------------- /Media/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/Media/6.png -------------------------------------------------------------------------------- /Media/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/Media/7.png -------------------------------------------------------------------------------- /Media/Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/Media/Banner.png -------------------------------------------------------------------------------- /Media/Edit Mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/Media/Edit Mode.png -------------------------------------------------------------------------------- /Media/Face ID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/Media/Face ID.png -------------------------------------------------------------------------------- /Media/Known List.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/Media/Known List.png -------------------------------------------------------------------------------- /Media/Preferences 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/Media/Preferences 1.png -------------------------------------------------------------------------------- /Media/Preferences 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/Media/Preferences 2.png -------------------------------------------------------------------------------- /Media/Swipe Actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/Media/Swipe Actions.png -------------------------------------------------------------------------------- /Media/Unknown List.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/Media/Unknown List.png -------------------------------------------------------------------------------- /Media/iDunnoU Banner.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/Media/iDunnoU Banner.sketch -------------------------------------------------------------------------------- /Media/iDunnoU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/Media/iDunnoU.png -------------------------------------------------------------------------------- /Media/iDunnoU.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/Media/iDunnoU.sketch -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/README.md -------------------------------------------------------------------------------- /Tweak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/Tweak.h -------------------------------------------------------------------------------- /Tweak.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/Tweak.x -------------------------------------------------------------------------------- /iDUBadgeButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/iDUBadgeButton.h -------------------------------------------------------------------------------- /iDUBadgeButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/iDUBadgeButton.m -------------------------------------------------------------------------------- /iDunnoU.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/iDunnoU.plist -------------------------------------------------------------------------------- /idunnoupreferences/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/idunnoupreferences/Makefile -------------------------------------------------------------------------------- /idunnoupreferences/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/idunnoupreferences/Resources/Info.plist -------------------------------------------------------------------------------- /idunnoupreferences/Resources/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/idunnoupreferences/Resources/Root.plist -------------------------------------------------------------------------------- /idunnoupreferences/Resources/icon-stamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/idunnoupreferences/Resources/icon-stamp.png -------------------------------------------------------------------------------- /idunnoupreferences/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/idunnoupreferences/Resources/icon.png -------------------------------------------------------------------------------- /idunnoupreferences/Resources/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/idunnoupreferences/Resources/icon@2x.png -------------------------------------------------------------------------------- /idunnoupreferences/Resources/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/idunnoupreferences/Resources/icon@3x.png -------------------------------------------------------------------------------- /idunnoupreferences/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/idunnoupreferences/entry.plist -------------------------------------------------------------------------------- /idunnoupreferences/iDURootListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/idunnoupreferences/iDURootListController.h -------------------------------------------------------------------------------- /idunnoupreferences/iDURootListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/idunnoupreferences/iDURootListController.m -------------------------------------------------------------------------------- /layout/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/layout/DEBIAN/control -------------------------------------------------------------------------------- /layout/DEBIAN/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/layout/DEBIAN/postinst -------------------------------------------------------------------------------- /layout/DEBIAN/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobcxdev/iDunnoU/HEAD/layout/DEBIAN/postrm --------------------------------------------------------------------------------