├── .gitignore ├── 3rdParty ├── GraphicsServices │ └── GSEvent.h └── IOKit │ ├── IOKit.h │ ├── IOKitKeys.h │ ├── IOKitLib.h │ ├── IOReturn.h │ ├── IOTypes.h │ ├── OSKext.h │ ├── OSMessageNotification.h │ └── hid │ ├── IOHIDDisplay.h │ ├── IOHIDEvent.h │ ├── IOHIDEventData.h │ ├── IOHIDEventQueue.h │ ├── IOHIDEventSystem.h │ ├── IOHIDEventSystemClient.h │ ├── IOHIDEventTypes.h │ ├── IOHIDNotification.h │ ├── IOHIDService.h │ ├── IOHIDSession.h │ └── IOHIDUserDevice.h ├── Frameworks └── GraphicsServices.framework │ └── GraphicsServices.tbd ├── Makefile ├── MousePointer.svg ├── README.md ├── Tweak.xm ├── layout ├── DEBIAN │ └── control ├── Library │ ├── MobileSubstrate │ │ └── DynamicLibraries │ │ │ └── MouseSupport.plist │ └── PreferenceLoader │ │ └── Preferences │ │ ├── Mouse.plist │ │ ├── Mouse.png │ │ ├── Mouse@2x.png │ │ ├── hare.png │ │ ├── hare@2x.png │ │ ├── turtle.png │ │ └── turtle@2x.png └── System │ └── Library │ └── CoreServices │ └── SpringBoard.app │ ├── MousePointer.png │ └── MousePointer@2x.png └── substrate.h /.gitignore: -------------------------------------------------------------------------------- 1 | debs/ 2 | -------------------------------------------------------------------------------- /3rdParty/GraphicsServices/GSEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/mouse-support/HEAD/3rdParty/GraphicsServices/GSEvent.h -------------------------------------------------------------------------------- /3rdParty/IOKit/IOKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/mouse-support/HEAD/3rdParty/IOKit/IOKit.h -------------------------------------------------------------------------------- /3rdParty/IOKit/IOKitKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/mouse-support/HEAD/3rdParty/IOKit/IOKitKeys.h -------------------------------------------------------------------------------- /3rdParty/IOKit/IOKitLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/mouse-support/HEAD/3rdParty/IOKit/IOKitLib.h -------------------------------------------------------------------------------- /3rdParty/IOKit/IOReturn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/mouse-support/HEAD/3rdParty/IOKit/IOReturn.h -------------------------------------------------------------------------------- /3rdParty/IOKit/IOTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/mouse-support/HEAD/3rdParty/IOKit/IOTypes.h -------------------------------------------------------------------------------- /3rdParty/IOKit/OSKext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/mouse-support/HEAD/3rdParty/IOKit/OSKext.h -------------------------------------------------------------------------------- /3rdParty/IOKit/OSMessageNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/mouse-support/HEAD/3rdParty/IOKit/OSMessageNotification.h -------------------------------------------------------------------------------- /3rdParty/IOKit/hid/IOHIDDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/mouse-support/HEAD/3rdParty/IOKit/hid/IOHIDDisplay.h -------------------------------------------------------------------------------- /3rdParty/IOKit/hid/IOHIDEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/mouse-support/HEAD/3rdParty/IOKit/hid/IOHIDEvent.h -------------------------------------------------------------------------------- /3rdParty/IOKit/hid/IOHIDEventData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/mouse-support/HEAD/3rdParty/IOKit/hid/IOHIDEventData.h -------------------------------------------------------------------------------- /3rdParty/IOKit/hid/IOHIDEventQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/mouse-support/HEAD/3rdParty/IOKit/hid/IOHIDEventQueue.h -------------------------------------------------------------------------------- /3rdParty/IOKit/hid/IOHIDEventSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/mouse-support/HEAD/3rdParty/IOKit/hid/IOHIDEventSystem.h -------------------------------------------------------------------------------- /3rdParty/IOKit/hid/IOHIDEventSystemClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/mouse-support/HEAD/3rdParty/IOKit/hid/IOHIDEventSystemClient.h -------------------------------------------------------------------------------- /3rdParty/IOKit/hid/IOHIDEventTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/mouse-support/HEAD/3rdParty/IOKit/hid/IOHIDEventTypes.h -------------------------------------------------------------------------------- /3rdParty/IOKit/hid/IOHIDNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/mouse-support/HEAD/3rdParty/IOKit/hid/IOHIDNotification.h -------------------------------------------------------------------------------- /3rdParty/IOKit/hid/IOHIDService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/mouse-support/HEAD/3rdParty/IOKit/hid/IOHIDService.h -------------------------------------------------------------------------------- /3rdParty/IOKit/hid/IOHIDSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/mouse-support/HEAD/3rdParty/IOKit/hid/IOHIDSession.h -------------------------------------------------------------------------------- /3rdParty/IOKit/hid/IOHIDUserDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/mouse-support/HEAD/3rdParty/IOKit/hid/IOHIDUserDevice.h -------------------------------------------------------------------------------- /Frameworks/GraphicsServices.framework/GraphicsServices.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/mouse-support/HEAD/Frameworks/GraphicsServices.framework/GraphicsServices.tbd -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/mouse-support/HEAD/Makefile -------------------------------------------------------------------------------- /MousePointer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/mouse-support/HEAD/MousePointer.svg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/mouse-support/HEAD/README.md -------------------------------------------------------------------------------- /Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/mouse-support/HEAD/Tweak.xm -------------------------------------------------------------------------------- /layout/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/mouse-support/HEAD/layout/DEBIAN/control -------------------------------------------------------------------------------- /layout/Library/MobileSubstrate/DynamicLibraries/MouseSupport.plist: -------------------------------------------------------------------------------- 1 | Filter = {Bundles = ("com.apple.springboard");}; 2 | -------------------------------------------------------------------------------- /layout/Library/PreferenceLoader/Preferences/Mouse.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/mouse-support/HEAD/layout/Library/PreferenceLoader/Preferences/Mouse.plist -------------------------------------------------------------------------------- /layout/Library/PreferenceLoader/Preferences/Mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/mouse-support/HEAD/layout/Library/PreferenceLoader/Preferences/Mouse.png -------------------------------------------------------------------------------- /layout/Library/PreferenceLoader/Preferences/Mouse@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/mouse-support/HEAD/layout/Library/PreferenceLoader/Preferences/Mouse@2x.png -------------------------------------------------------------------------------- /layout/Library/PreferenceLoader/Preferences/hare.png: -------------------------------------------------------------------------------- 1 | /System/Library/PreferenceBundles/AccessibilitySettings.bundle/hare.png -------------------------------------------------------------------------------- /layout/Library/PreferenceLoader/Preferences/hare@2x.png: -------------------------------------------------------------------------------- 1 | /System/Library/PreferenceBundles/AccessibilitySettings.bundle/hare@2x.png -------------------------------------------------------------------------------- /layout/Library/PreferenceLoader/Preferences/turtle.png: -------------------------------------------------------------------------------- 1 | /System/Library/PreferenceBundles/AccessibilitySettings.bundle/turtle.png -------------------------------------------------------------------------------- /layout/Library/PreferenceLoader/Preferences/turtle@2x.png: -------------------------------------------------------------------------------- 1 | /System/Library/PreferenceBundles/AccessibilitySettings.bundle/turtle@2x.png -------------------------------------------------------------------------------- /layout/System/Library/CoreServices/SpringBoard.app/MousePointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/mouse-support/HEAD/layout/System/Library/CoreServices/SpringBoard.app/MousePointer.png -------------------------------------------------------------------------------- /layout/System/Library/CoreServices/SpringBoard.app/MousePointer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/mouse-support/HEAD/layout/System/Library/CoreServices/SpringBoard.app/MousePointer@2x.png -------------------------------------------------------------------------------- /substrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/mouse-support/HEAD/substrate.h --------------------------------------------------------------------------------