whe.el

emacs support for the thrustmaster t-150 steering wheel
Log | Files | Refs | README

README.md (591B)


      1 ![](./logo.png)
      2 
      3 ## control emacs with your steering wheel
      4 
      5 This package implements Emacs support for the Thrustmaster T150 USB
      6 steering wheel.
      7 
      8 Not only can you control said steering wheel through Emacs, but `whe.el`
      9 also provides key emulation for all the buttons on the wheel to allow you
     10 to use them in keybinds. Furthermore, with the `wheel-def` macro you can
     11 have keybinds depend on the position of the wheel, thus making insane
     12 keybinds like "control-x-g-starboard" a reality.
     13 
     14 ```elisp
     15 (wheel-def "C-x g"
     16    :starboard hydra-go-to-file/body
     17    :port magit-status
     18    :none vterm)
     19 ```