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">
|
2020-12-19 18:43:17 +00:00
|
|
|
A tool to change the mapping of your input device buttons.<br/>
|
2020-12-19 23:39:23 +00:00
|
|
|
Supports mice, keyboards, gamepads, X11, Wayland 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
|
|
|
|
|
2020-12-24 00:26:34 +00:00
|
|
|
Download a release .deb file from [/releases](https://github.com/sezanzeb/key-mapper/releases)
|
|
|
|
or install from source and dpkg using the following commands:
|
|
|
|
|
2020-12-20 16:33:59 +00:00
|
|
|
```bash
|
2020-12-24 00:26:34 +00:00
|
|
|
git clone https://github.com/sezanzeb/key-mapper.git
|
|
|
|
cd key-mapper && ./scripts/build.sh
|
|
|
|
sudo dpkg -i ./dist/key-mapper-0.4.0.deb
|
|
|
|
sudo apt-get -f install
|
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>
|