├── .gitignore ├── .gitmodules ├── FaceTimeAudioEnabler.plist ├── Makefile ├── README.md ├── Tweak.xm ├── control ├── layout └── DEBIAN │ ├── postinst │ └── postrm └── make_ldid.sh /.gitignore: -------------------------------------------------------------------------------- 1 | obj 2 | .theos 3 | _ 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchenwen/FaceTimeAudioEnabler/HEAD/.gitmodules -------------------------------------------------------------------------------- /FaceTimeAudioEnabler.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchenwen/FaceTimeAudioEnabler/HEAD/FaceTimeAudioEnabler.plist -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchenwen/FaceTimeAudioEnabler/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchenwen/FaceTimeAudioEnabler/HEAD/README.md -------------------------------------------------------------------------------- /Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchenwen/FaceTimeAudioEnabler/HEAD/Tweak.xm -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchenwen/FaceTimeAudioEnabler/HEAD/control -------------------------------------------------------------------------------- /layout/DEBIAN/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchenwen/FaceTimeAudioEnabler/HEAD/layout/DEBIAN/postinst -------------------------------------------------------------------------------- /layout/DEBIAN/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchenwen/FaceTimeAudioEnabler/HEAD/layout/DEBIAN/postrm -------------------------------------------------------------------------------- /make_ldid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchenwen/FaceTimeAudioEnabler/HEAD/make_ldid.sh --------------------------------------------------------------------------------