- Change the key event. (For example, "Change Right Option to Enter")
- Change the consumer key event. (The consumer key is the functional key such as "Volume Down")
- Change the pointing event. (For example, "MiddleClick to Expose")
- The key repeat function.
- Add private setting dynamically by private.xml.
- Filtering by application or input source or specific device, etc.
- Support to "Fast User Switching".
- Check software updates automatically
See README.md
- Karabiner.kext (Kernel Extension)
- Karabiner.app (Userspace Application)
+- src/bridge/generator/keycode +- src/bridge/include/bridge.h +- src/lib/xml_compiler +- src/bin/dump_xml_compiler_result +- src/bridge/generator/config +- src/core/kext +- src/core/server ("src/core/server" depends on "src/bridge/generator/config", ...)
To prevent leakage of the input event, the modification of the input event is perfomed inside kernel entirely.
We set a hook function in the middle of hardware driver. And we modify the input event in the hook function.
...
Karabiner and Seil will modify input events at different timing.
Karabiner: http://pqrs.org/osx/karabiner/ Seil: http://pqrs.org/osx/karabiner/seil.html
- Device sends the input event.
- Modify the input event by Seil.
- Modify the input event by "System Preferences > Keyboard > Modifier Keys..."
- Modify the input event by Karabiner.
- Send the input event to Applications.
We use a global lock to guard the status of modifier flags, the status of buttons, and other global variables. All threads use this global lock. The only one thread runs at the same time.
Threads:
- Timer callback (*_timer_callback)
- hooked function (EventInputQueue::push_*)
- gIOMatchedNotification and gIOTerminatedNotification callback of input devices (Core::*Notification_callback)
- IOUserClient callback (UserClient_kext::callback_*)
A selected list to orient you...
- make-package.sh: shell script to create a signed .dmg file.
- version: current version number string
- Tests/: tests based on gtest (Google C++ Testing Framework).
- files/: files and configurations for making OS/X applications
- files/extra: shell scripts for packaging used by make-package.sh
- pkginfo/: more package tools, including setting the version number.
- src/:
- src/vendor/blueutil: command line control of Bluetooth
- src/core/server/: main server code, what you see as the UI.
- .../Frameworks/Sparkle.framework: modified Sparkle upgrader
- .../Resources/include/checkbox: long ChangeKey list items
- src/core/kext: main kernal extension magic
- util/uncrustify: code beautifier