Skip to content

Commit

Permalink
Hide irrelevant error in postint, doc minimum python version, doc on …
Browse files Browse the repository at this point in the history
…how to properly map wheels
  • Loading branch information
sezanzeb committed Sep 18, 2023
1 parent d2d0fa8 commit 568f56c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
4 changes: 2 additions & 2 deletions DEBIAN/postinst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
if [ -d "/run/systemd/system/" ]; then
# old name, those lines should at some point be removed from postinst
pkill -f key-mapper-service
systemctl disable key-mapper
systemctl stop key-mapper
systemctl disable key-mapper 2> /dev/null || true
systemctl stop key-mapper 2> /dev/null || true

pkill -f input-remapper-service # might have been started by the gui previously
systemctl enable input-remapper
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ sudo apt install -f ./dist/input-remapper-2.0.0.deb
```

input-remapper is available in [Debian](https://tracker.debian.org/pkg/input-remapper)
and [Ubuntu](https://packages.ubuntu.com/jammy/input-remapper)
and [Ubuntu](https://packages.ubuntu.com/jammy/input-remapper).

input-remapper ≥ 2.0 requires at least Ubuntu 22.04.

##### Fedora

Expand Down
7 changes: 7 additions & 0 deletions readme/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,13 @@ sensitivity, non-linearity and other parameters as you like.
It is also possible to use an analog output with an input combination.
This will result in the analog axis to be only injected if the combination is pressed

## Wheels

When mapping wheels, you need to be aware that there are both `WHEEL` and `WHEEL_HI_RES`
events. This can cause your wheel to scroll, despite being mapped to something.
By fiddling around with the advanced settings when editing one of your inputs, you can
map the "Hi Res" inputs to `disable`.

# External tools

Repositories listed here are made by input-remappers users. Feel free to extend. Beware,
Expand Down

0 comments on commit 568f56c

Please sign in to comment.