2020-10-31 13:02:59 +00:00
|
|
|
# Key Mapper
|
2020-10-26 22:45:22 +00:00
|
|
|
|
2020-11-22 20:46:58 +00:00
|
|
|
Tool to change the mapping of your input device buttons.
|
2020-11-22 20:43:22 +00:00
|
|
|
|
2020-10-31 18:21:17 +00:00
|
|
|
<p align="center">
|
|
|
|
<img src="data/screenshot.png"/>
|
|
|
|
</p>
|
|
|
|
|
2020-11-01 20:32:06 +00:00
|
|
|
# Running
|
|
|
|
|
2020-11-22 21:07:54 +00:00
|
|
|
First, install the package:
|
|
|
|
|
2020-11-22 21:08:21 +00:00
|
|
|
```bash
|
2020-11-22 21:07:54 +00:00
|
|
|
git clone https://github.com/sezanzeb/key-mapper.git
|
|
|
|
cd key-mapper
|
|
|
|
sudo python3 setup.py install
|
|
|
|
```
|
|
|
|
|
|
|
|
To keep injecting the mapping after closing the window, the daemon needs to
|
|
|
|
be running:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
sudo key-mapper-service -d
|
|
|
|
```
|
|
|
|
|
|
|
|
To open the UI to modify the mappings, use:
|
|
|
|
|
2020-11-02 19:55:17 +00:00
|
|
|
```bash
|
2020-11-22 21:07:54 +00:00
|
|
|
sudo key-mapper-gtk -d
|
2020-11-01 20:32:06 +00:00
|
|
|
```
|
|
|
|
|
2020-11-15 11:15:58 +00:00
|
|
|
You can also start it via your applications menu.
|
2020-11-01 19:19:50 +00:00
|
|
|
|
2020-11-15 11:15:58 +00:00
|
|
|
# Dependencies
|
2020-11-02 18:47:31 +00:00
|
|
|
|
2020-11-21 13:57:08 +00:00
|
|
|
Depending on how those packages are called in your distro:
|
|
|
|
|
2020-11-22 20:45:58 +00:00
|
|
|
`python3-distutils-extra` `python3-evdev` `python3-dbus`
|
|
|
|
|
|
|
|
It works with both Wayland and X11.
|
2020-11-01 20:32:06 +00:00
|
|
|
|
|
|
|
# Tests
|
|
|
|
|
2020-11-02 19:55:17 +00:00
|
|
|
```bash
|
2020-11-22 20:41:29 +00:00
|
|
|
pylint keymapper --extension-pkg-whitelist=evdev
|
2020-11-08 17:51:35 +00:00
|
|
|
sudo python3 setup.py install && python3 tests/test.py
|
2020-11-01 20:32:06 +00:00
|
|
|
```
|
2020-11-01 19:19:50 +00:00
|
|
|
|
2020-10-31 18:22:50 +00:00
|
|
|
# Roadmap
|
2020-10-26 22:45:22 +00:00
|
|
|
|
2020-11-22 21:04:30 +00:00
|
|
|
- [x] show a dropdown to select valid devices
|
2020-11-19 00:45:12 +00:00
|
|
|
- [x] creating presets per device
|
|
|
|
- [x] renaming presets
|
2020-11-22 21:04:30 +00:00
|
|
|
- [x] show a mapping table
|
2020-11-15 11:15:58 +00:00
|
|
|
- [x] make that list extend itself automatically
|
2020-11-22 21:03:44 +00:00
|
|
|
- [x] read keycodes with evdev
|
|
|
|
- [x] inject the mapping
|
2020-11-10 22:21:19 +00:00
|
|
|
- [x] keep the system defaults for unmapped buttons
|
2020-11-19 00:45:12 +00:00
|
|
|
- [x] button to stop mapping and using system defaults
|
2020-11-15 00:35:35 +00:00
|
|
|
- [x] highlight changes and alert before discarding unsaved changes
|
2020-11-22 21:03:44 +00:00
|
|
|
- [ ] automatically load presets on login for plugged in devices
|
|
|
|
- [ ] automatically load presets when devices get plugged in after login
|
2020-11-15 17:55:16 +00:00
|
|
|
- [x] ask for administrator permissions using polkit
|
2020-11-22 20:43:22 +00:00
|
|
|
- [x] make sure it works on wayland
|
2020-11-08 20:39:31 +00:00
|
|
|
- [ ] add to the AUR, provide .deb and .appimage files
|
2020-11-22 20:04:09 +00:00
|
|
|
- [ ] support timed macros, maybe using some sort of syntax
|