2020-12-20 16:33:59 +00:00
|
|
|
<p align="center"><img src="data/key-mapper.svg" width=100/></p>
|
|
|
|
|
2020-11-26 22:45:24 +00:00
|
|
|
<h1 align="center">Key Mapper</h1>
|
2020-11-26 22:34:52 +00:00
|
|
|
|
2020-12-19 18:42:55 +00:00
|
|
|
<p align="center">
|
2021-01-01 13:51:40 +00:00
|
|
|
An easy to use tool to change the mapping of your input device buttons.<br/>
|
2021-01-01 13:25:12 +00:00
|
|
|
Supports mice, keyboards, gamepads, X11, Wayland, combined buttons and programmable macros.
|
2020-12-19 18:42:55 +00:00
|
|
|
</p>
|
2020-11-26 21:19:30 +00:00
|
|
|
|
2020-12-20 16:33:59 +00:00
|
|
|
<p align="center"><a href="readme/usage.md">Usage</a> - <a href="#installation">Installation</a> - <a href="readme/development.md">Development</a> - <a href="#screenshots">Screenshots</a></p>
|
|
|
|
|
2020-11-26 23:36:05 +00:00
|
|
|
<p align="center"><img src="readme/pylint.svg"/> <img src="readme/coverage.svg"/></p>
|
2020-11-22 20:43:22 +00:00
|
|
|
|
2020-12-20 16:33:59 +00:00
|
|
|
## Installation
|
2020-11-26 22:52:58 +00:00
|
|
|
|
2020-12-20 16:33:59 +00:00
|
|
|
##### Manjaro/Arch
|
|
|
|
|
|
|
|
```bash
|
|
|
|
pacaur -S key-mapper-git
|
|
|
|
```
|
|
|
|
|
|
|
|
##### Ubuntu/Debian
|
|
|
|
|
2021-01-07 16:25:27 +00:00
|
|
|
Get a .deb file from https://github.com/sezanzeb/key-mapper/releases/tag/0.6.0 or make it yourself:
|
|
|
|
|
2020-12-20 16:33:59 +00:00
|
|
|
```bash
|
2020-12-26 22:19:33 +00:00
|
|
|
sudo apt install git python3-setuptools
|
2020-12-24 00:26:34 +00:00
|
|
|
git clone https://github.com/sezanzeb/key-mapper.git
|
|
|
|
cd key-mapper && ./scripts/build.sh
|
2021-01-07 16:22:00 +00:00
|
|
|
sudo dpkg -i ./dist/key-mapper-0.6.0.deb
|
2021-01-01 02:14:32 +00:00
|
|
|
sudo apt -f install # installs dependencies
|
2020-12-20 16:33:59 +00:00
|
|
|
```
|
2020-11-29 12:55:37 +00:00
|
|
|
|
2020-12-24 00:26:34 +00:00
|
|
|
##### pip
|
2020-11-29 15:24:44 +00:00
|
|
|
|
2020-12-20 16:33:59 +00:00
|
|
|
Depending on your distro, maybe you need to use `--force` to get all your
|
|
|
|
files properly in place and overwrite a previous installation of key-mapper.
|
2020-12-24 00:26:34 +00:00
|
|
|
There are two options available to install using setuptools/pip:
|
2020-12-02 19:48:23 +00:00
|
|
|
|
2020-12-20 16:33:59 +00:00
|
|
|
```bash
|
|
|
|
sudo pip install git+https://github.com/sezanzeb/key-mapper.git
|
2020-12-24 00:26:34 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
```bash
|
2020-12-20 16:33:59 +00:00
|
|
|
git clone https://github.com/sezanzeb/key-mapper.git
|
|
|
|
cd key-mapper && sudo python3 setup.py install
|
|
|
|
```
|
2020-12-20 13:02:31 +00:00
|
|
|
|
2020-12-20 16:33:59 +00:00
|
|
|
## Screenshots
|
2020-12-20 13:02:31 +00:00
|
|
|
|
|
|
|
<p align="center">
|
|
|
|
<img src="readme/screenshot.png"/>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p align="center">
|
|
|
|
<img src="readme/screenshot_2.png"/>
|
|
|
|
</p>
|