# k_board
[
](https://crates.io/crates/k_board)
[
](https://github.com/mateolafalce/k_board)
[
](https://docs.rs/k_board)
A lightweight keyboard mannager developed for dynamic programs by listening to keyboard events in raw mode (without the need to press enter). The handler has all the standard events of a western keyboard.
- Only for Gnu/Linux distributions
```rust
pub enum Keys {
Up,
Down,
Left,
Right,
Enter,
Space,
Delete,
Escape,
Char(char)
F(u8),
Ctrl(char),
Alt(char),
AltGr(char),
Null,
}
```
---
## Examples