├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── COPYING ├── Makefile ├── Preferences ├── Cells │ ├── CallaLinkCell.h │ ├── CallaLinkCell.m │ ├── CallaSingleContactCell.h │ └── CallaSingleContactCell.m ├── Controllers │ ├── EnekoCreditsListController.h │ ├── EnekoCreditsListController.m │ ├── EnekoRootListController.h │ └── EnekoRootListController.m ├── Makefile ├── NotificationKeys.h ├── PreferenceKeys.h ├── Resources │ ├── Credits.plist │ ├── Icon.png │ ├── Icon@2x.png │ ├── Info.plist │ └── Root.plist └── layout │ └── Library │ └── PreferenceLoader │ └── Preferences │ └── EnekoPreferences.plist ├── Preview.png ├── README.md ├── Tweak ├── Eneko.h ├── Eneko.m ├── Eneko.plist └── Makefile └── control /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: traurige 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Eneko/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Eneko/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .theos 3 | .vscode 4 | packages/ 5 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Eneko/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Eneko/HEAD/Makefile -------------------------------------------------------------------------------- /Preferences/Cells/CallaLinkCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Eneko/HEAD/Preferences/Cells/CallaLinkCell.h -------------------------------------------------------------------------------- /Preferences/Cells/CallaLinkCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Eneko/HEAD/Preferences/Cells/CallaLinkCell.m -------------------------------------------------------------------------------- /Preferences/Cells/CallaSingleContactCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Eneko/HEAD/Preferences/Cells/CallaSingleContactCell.h -------------------------------------------------------------------------------- /Preferences/Cells/CallaSingleContactCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Eneko/HEAD/Preferences/Cells/CallaSingleContactCell.m -------------------------------------------------------------------------------- /Preferences/Controllers/EnekoCreditsListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Eneko/HEAD/Preferences/Controllers/EnekoCreditsListController.h -------------------------------------------------------------------------------- /Preferences/Controllers/EnekoCreditsListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Eneko/HEAD/Preferences/Controllers/EnekoCreditsListController.m -------------------------------------------------------------------------------- /Preferences/Controllers/EnekoRootListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Eneko/HEAD/Preferences/Controllers/EnekoRootListController.h -------------------------------------------------------------------------------- /Preferences/Controllers/EnekoRootListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Eneko/HEAD/Preferences/Controllers/EnekoRootListController.m -------------------------------------------------------------------------------- /Preferences/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Eneko/HEAD/Preferences/Makefile -------------------------------------------------------------------------------- /Preferences/NotificationKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Eneko/HEAD/Preferences/NotificationKeys.h -------------------------------------------------------------------------------- /Preferences/PreferenceKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Eneko/HEAD/Preferences/PreferenceKeys.h -------------------------------------------------------------------------------- /Preferences/Resources/Credits.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Eneko/HEAD/Preferences/Resources/Credits.plist -------------------------------------------------------------------------------- /Preferences/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Eneko/HEAD/Preferences/Resources/Icon.png -------------------------------------------------------------------------------- /Preferences/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Eneko/HEAD/Preferences/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Preferences/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Eneko/HEAD/Preferences/Resources/Info.plist -------------------------------------------------------------------------------- /Preferences/Resources/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Eneko/HEAD/Preferences/Resources/Root.plist -------------------------------------------------------------------------------- /Preferences/layout/Library/PreferenceLoader/Preferences/EnekoPreferences.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Eneko/HEAD/Preferences/layout/Library/PreferenceLoader/Preferences/EnekoPreferences.plist -------------------------------------------------------------------------------- /Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Eneko/HEAD/Preview.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Eneko/HEAD/README.md -------------------------------------------------------------------------------- /Tweak/Eneko.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Eneko/HEAD/Tweak/Eneko.h -------------------------------------------------------------------------------- /Tweak/Eneko.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Eneko/HEAD/Tweak/Eneko.m -------------------------------------------------------------------------------- /Tweak/Eneko.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Eneko/HEAD/Tweak/Eneko.plist -------------------------------------------------------------------------------- /Tweak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Eneko/HEAD/Tweak/Makefile -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Eneko/HEAD/control --------------------------------------------------------------------------------