├── .clang-format ├── .github └── workflows │ ├── ci.yml │ ├── deploy.yml │ └── remote-deploy.yml ├── .gitignore ├── .vscode ├── AirDrop.shortcut ├── extensions.json ├── logos-format.py ├── settings.json └── tasks.json ├── Bunny.plist ├── Headers ├── DeviceModels.h ├── Fonts.h ├── LoaderConfig.h ├── Logger.h ├── RCTCxxBridge.h ├── Settings.h ├── Themes.h └── Utils.h ├── LICENSE ├── Makefile ├── README.md ├── Sources ├── Fonts.x ├── LoaderConfig.m ├── Logger.m ├── Settings.m ├── Sideloading.x ├── Themes.m ├── Tweak.x ├── Utils.m └── payload-base.template.js ├── app-repo.json └── control /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny-mod/BunnyTweak/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny-mod/BunnyTweak/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny-mod/BunnyTweak/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/remote-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny-mod/BunnyTweak/HEAD/.github/workflows/remote-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny-mod/BunnyTweak/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/AirDrop.shortcut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny-mod/BunnyTweak/HEAD/.vscode/AirDrop.shortcut -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny-mod/BunnyTweak/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/logos-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny-mod/BunnyTweak/HEAD/.vscode/logos-format.py -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny-mod/BunnyTweak/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny-mod/BunnyTweak/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Bunny.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny-mod/BunnyTweak/HEAD/Bunny.plist -------------------------------------------------------------------------------- /Headers/DeviceModels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny-mod/BunnyTweak/HEAD/Headers/DeviceModels.h -------------------------------------------------------------------------------- /Headers/Fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny-mod/BunnyTweak/HEAD/Headers/Fonts.h -------------------------------------------------------------------------------- /Headers/LoaderConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny-mod/BunnyTweak/HEAD/Headers/LoaderConfig.h -------------------------------------------------------------------------------- /Headers/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny-mod/BunnyTweak/HEAD/Headers/Logger.h -------------------------------------------------------------------------------- /Headers/RCTCxxBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny-mod/BunnyTweak/HEAD/Headers/RCTCxxBridge.h -------------------------------------------------------------------------------- /Headers/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny-mod/BunnyTweak/HEAD/Headers/Settings.h -------------------------------------------------------------------------------- /Headers/Themes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny-mod/BunnyTweak/HEAD/Headers/Themes.h -------------------------------------------------------------------------------- /Headers/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny-mod/BunnyTweak/HEAD/Headers/Utils.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny-mod/BunnyTweak/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny-mod/BunnyTweak/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny-mod/BunnyTweak/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Fonts.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny-mod/BunnyTweak/HEAD/Sources/Fonts.x -------------------------------------------------------------------------------- /Sources/LoaderConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny-mod/BunnyTweak/HEAD/Sources/LoaderConfig.m -------------------------------------------------------------------------------- /Sources/Logger.m: -------------------------------------------------------------------------------- 1 | #import "Logger.h" 2 | -------------------------------------------------------------------------------- /Sources/Settings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny-mod/BunnyTweak/HEAD/Sources/Settings.m -------------------------------------------------------------------------------- /Sources/Sideloading.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny-mod/BunnyTweak/HEAD/Sources/Sideloading.x -------------------------------------------------------------------------------- /Sources/Themes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny-mod/BunnyTweak/HEAD/Sources/Themes.m -------------------------------------------------------------------------------- /Sources/Tweak.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny-mod/BunnyTweak/HEAD/Sources/Tweak.x -------------------------------------------------------------------------------- /Sources/Utils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny-mod/BunnyTweak/HEAD/Sources/Utils.m -------------------------------------------------------------------------------- /Sources/payload-base.template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny-mod/BunnyTweak/HEAD/Sources/payload-base.template.js -------------------------------------------------------------------------------- /app-repo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny-mod/BunnyTweak/HEAD/app-repo.json -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny-mod/BunnyTweak/HEAD/control --------------------------------------------------------------------------------