An open API service indexing awesome lists of open source software.

https://github.com/joeferner/rekey

Remap the keyboard via JavaScript
https://github.com/joeferner/rekey

Last synced: 10 months ago
JSON representation

Remap the keyboard via JavaScript

Awesome Lists containing this project

README

          

# About

ReKey is a Windows application designed to intercept keyboard input and execute JavaScript in response.
Keyboard input can be filtered based on devices allowing multiple keyboard behave differently.

# Build

```bash
rustup target add i686-pc-windows-msvc
cargo build
```

# Reference

- [windows crate documentation](https://microsoft.github.io/windows-docs-rs/doc/windows/index.html)
- [windows crate samples](https://github.com/microsoft/windows-rs/tree/master/crates/samples/windows)
- [create DLL with Rust](https://samrambles.com/guides/window-hacking-with-rust/creating-a-dll-with-rust/index.html)
- [USB Pendant for Universal Gcode Sender](https://www.instructables.com/USB-Pendant-for-Universal-G-Code-Sender-UGS-for-CN/)
- [luamacros](https://github.com/me2d13/luamacros)
- [Using Hooks](https://learn.microsoft.com/en-us/windows/win32/winmsg/using-hooks)
- [Building a Win32 Rust App From Scratch](https://rust-tutorials.github.io/triangle-from-scratch/opening_a_window/win32.html)