On linux there is no numericpad support for my laptop "out of the box", so I will try to implement it.
- Switching LED on touchpad
- 5 levels of brightness
- So far only for model UM433D
- Use log instead of println :)
- Make numpad work (UM433D only)
- Support for a custom application starts on the upper left button press
- implement the finding of the corresponding Touchpad event in /proc/bus/input/devices
- Implement for different Asus Zenbook models with/without % symbol
- systemd module
Read "Installation" from 'The Rust Programming Language' book.
$ sudo pacman -S libevdev i2c-tools git
$ sudo modprobe i2c-dev
$ git clone https://github.com/khadievedem/asus-zenbook-numpad-driver-rs
$ cd ./asus-zenbook-numpad-driver-rs
$ sudo cargo run *arg
$ sudo RUST_LOG=debug cargo run *arg
Add *arg - the path to your application binary that will run when you press on upper-left button
Thanks to Mohamed Badaoui for his Python implementation and inspiration.