├── LICENSE ├── Makefile ├── Prefs ├── APGRootListController.h ├── APGRootListController.m ├── Makefile ├── Resources │ ├── Info.plist │ ├── Root.plist │ ├── icon@2x.png │ └── icon@3x.png └── layout │ └── Library │ └── PreferenceLoader │ └── Preferences │ └── AirPodsGlyphPrefs.plist ├── Tweak ├── AirPodsGlyph.plist ├── Makefile ├── Tweak.h └── Tweak.x └── control /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/level3tjg/AirPodsGlyph/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/level3tjg/AirPodsGlyph/HEAD/Makefile -------------------------------------------------------------------------------- /Prefs/APGRootListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/level3tjg/AirPodsGlyph/HEAD/Prefs/APGRootListController.h -------------------------------------------------------------------------------- /Prefs/APGRootListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/level3tjg/AirPodsGlyph/HEAD/Prefs/APGRootListController.m -------------------------------------------------------------------------------- /Prefs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/level3tjg/AirPodsGlyph/HEAD/Prefs/Makefile -------------------------------------------------------------------------------- /Prefs/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/level3tjg/AirPodsGlyph/HEAD/Prefs/Resources/Info.plist -------------------------------------------------------------------------------- /Prefs/Resources/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/level3tjg/AirPodsGlyph/HEAD/Prefs/Resources/Root.plist -------------------------------------------------------------------------------- /Prefs/Resources/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/level3tjg/AirPodsGlyph/HEAD/Prefs/Resources/icon@2x.png -------------------------------------------------------------------------------- /Prefs/Resources/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/level3tjg/AirPodsGlyph/HEAD/Prefs/Resources/icon@3x.png -------------------------------------------------------------------------------- /Prefs/layout/Library/PreferenceLoader/Preferences/AirPodsGlyphPrefs.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/level3tjg/AirPodsGlyph/HEAD/Prefs/layout/Library/PreferenceLoader/Preferences/AirPodsGlyphPrefs.plist -------------------------------------------------------------------------------- /Tweak/AirPodsGlyph.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/level3tjg/AirPodsGlyph/HEAD/Tweak/AirPodsGlyph.plist -------------------------------------------------------------------------------- /Tweak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/level3tjg/AirPodsGlyph/HEAD/Tweak/Makefile -------------------------------------------------------------------------------- /Tweak/Tweak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/level3tjg/AirPodsGlyph/HEAD/Tweak/Tweak.h -------------------------------------------------------------------------------- /Tweak/Tweak.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/level3tjg/AirPodsGlyph/HEAD/Tweak/Tweak.x -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/level3tjg/AirPodsGlyph/HEAD/control --------------------------------------------------------------------------------