maricn / interception-vimproved

Unofficial plugin for Interception Tools combining features of caps2esc and space cadet for making held space work as a special fn key. Now configurable!
Apache License 2.0
42 stars 12 forks source link
evdev interception-tools keyboard keyboard-shortcuts uinput wayland xcape xinput xkb xmodmap

Interception plugin for vimproved input

~My hideous~ Humble, performant key remapping C++ code that should work on Linux for any input device that emits keys.

tl;dr;

Requirements

Basically any OS that works with libevdev (linux with kernel newer than 2.6.36), no matter what desktop environment, or even if any DE is used (yes, it works the same in X server instead of xmodmap, but also in plain terminal without graphical environment). For building, meson (and ninja), and make. At runtime, the https://github.com/jbeder/yaml-cpp YAML library.

Installation

$ git clone "https://github.com/maricn/interception-vimproved"
$ cd interception-vimproved
$ sudo make install

Running

Use it with a job specification for udevmon (from Interception Tools). I install the binary to /opt/interception/interception-vimproved and use it like the following on Arch linux on Thinkpad x1c gen7.

- JOB: "intercept -g $DEVNODE | interception-vimproved | uinput -d $DEVNODE"
  DEVICE:
    NAME: ".*((k|K)(eyboard|EYBOARD)|TADA68).*"

That matches any udev devices containing keyboard in the name (or my external TADA68 keyboard).

Alternatively, you can run it with udevmon binary straight, just make sure to be negatively nice (nice -n -20 udevmon -c /etc/interception-vimproved/config.yaml) so your input is always available.

Configuration

If you want to customize the functionality, you can take a look at the config.yaml. The configuration file is copied to /etc/interception-vimproved/config.yaml when invoking sudo make install. You can configure that file and add its path as an argument to interception-vimproved when run by updating your /etc/interception/udevmon.yaml:

...
- JOB:
  - |
    intercept -g $DEVNODE \
    | interception-vimproved /etc/interception-vimproved/config.yaml \
    | uinput -d $DEVNODE
...

Testing

In case you want to edit the source code, kill the udevmon daemon, and manually try the following to avoid getting stuck with broken input. Trust me, you can get yourself in a dead end situation easily.

# sleep buys you some time to focus away from terminal to your playground, also you'll probably need to add a sudo
sleep 1 && timeout 10 udevmon -c /etc/interception-vimproved/config.yaml

Why make this

  1. I have problems switching back and forth between my external keyboard and laptop keyboard. I customized my external keyboard with QMK to reduce my pinky strain and improve usability, but when I switch back to laptop keyboard, it's all lost, plus I have to fight my muscle memory.
  2. I used to use X.Org server with xinput, where I had an xkbcomp based solution with xcape and xmodmap. However, since moving to wayland, that solution doesn't work anymore, and I needed to move to libevdev based solution.
  3. Enter Interception Tools. It advertises itself as "a minimal composable infrastructure on top of libudev and libevdev". It, on one side, intercepts events from devices and writes them raw to stdout, and on the other side, it receives events from stdin and writes them to virtual input device.
  4. This plugin sits piped between Interception Tool's intercept and uinput (intercept | interception-vimproved | uinput). It interprets input from intercept and maps it to desired events which are then passed to uinput for emitting.

Acknowledgments

Kudos to @dceluis and @exprpapi for their contributions.

Related work / inspiration