From 2990663896aa3a97956afffaa703bfb7e23d2b40 Mon Sep 17 00:00:00 2001 From: sezanzeb Date: Sun, 20 Dec 2020 17:39:35 +0100 Subject: [PATCH] Delete installation.md --- readme/installation.md | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 readme/installation.md diff --git a/readme/installation.md b/readme/installation.md deleted file mode 100644 index 4715dde3..00000000 --- a/readme/installation.md +++ /dev/null @@ -1,42 +0,0 @@ -# Installation - -The tool shows and logs if there are issues, but usually, independent of the -method, you should add yourself to the `input` and `plugdev` groups so that -you can read information from your devices. You have to start the application -via sudo otherwise. You may also need to grant yourself write access to -`/dev/uinput` to be able to inject your programmed mapping. - -There is a shortcut for configuring this stuff: - -```bash -sudo key-mapper-service --setup-permissions -``` - -Now log out and back in (or restart in some cases). - -## Manjaro/Arch - -```bash -pacaur -S key-mapper-git -``` - -## Ubuntu/Debian - -```bash -wget "https://github.com/sezanzeb/key-mapper/releases/"\ -"download/0.3.1/python3-key-mapper_0.3.1-1_all.deb" -sudo dpkg -i python3-key-mapper_0.3.1-1_all.deb -``` - -## Git/pip - -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. - -```bash -# method 1 -sudo pip install git+https://github.com/sezanzeb/key-mapper.git -# method 2 -git clone https://github.com/sezanzeb/key-mapper.git -cd key-mapper && sudo python3 setup.py install -```