https://github.com/oery/oery-debouncer
Fix Keyboards Double Inputs
https://github.com/oery/oery-debouncer
debounce keyboard utility windows
Last synced: 2 months ago
JSON representation
Fix Keyboards Double Inputs
- Host: GitHub
- URL: https://github.com/oery/oery-debouncer
- Owner: Oery
- License: mit
- Created: 2024-05-08T10:37:40.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-05T13:02:27.000Z (7 months ago)
- Last Synced: 2025-01-30T02:44:51.924Z (4 months ago)
- Topics: debounce, keyboard, utility, windows
- Language: Rust
- Homepage:
- Size: 85.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Oery Debouncer
This utility adds a debounce time to your keyboard, this can fix keys with double inputs. Delays are independant to each key. Every time you press a key, you won't be able to press it again for the debounce time.
## Usage
1. Download the latest release from the [releases page](https://github.com/oery/oery-debouncer/releases)
2. Execute the executable
3. Set the debounce time in the system tray icon
4. Add a link to the executable in your `shell:startup` folder if you want it to start on boot### Known issues
- The FN modifier key isn't debounced (Windows API limitation)
## Building
You will need to have the [Rust toolchain](https://www.rust-lang.org/tools/install) installed.
```sh
cargo build --release
```## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details