13 Commits

Author SHA1 Message Date
975bb74284 Passthrough mouse events
To not block mice that have keys, which end up grabbed due to generic
configurations that simply filter anything that responds to CAPSLOCK/ESC.

Fixes #15
2021-01-01 00:18:03 -03:00
8bfd57eda2 Formatting 2020-12-30 23:40:02 -03:00
186b887e7d Make multi device example more robust
The previous one won't work when devices reattach.
2020-12-30 23:16:17 -03:00
c738e8783a Formatting 2020-12-30 21:32:58 -03:00
a062311ffb Formatting 2020-12-30 21:19:31 -03:00
ac6bbe61c2 Update README 2020-12-29 09:26:35 -03:00
12dc2f75c7 Update README 2020-12-29 03:47:41 -03:00
3eaf2bddfe Update README 2020-12-29 03:46:32 -03:00
0c8326646a Expand mouse support
Until now mouse support existed just as side effect of muxing and that
mouse clicks are registered as key events. This expands the support for
mouse wheel and movement.
2020-12-29 02:43:04 -03:00
5c7e6b5a5d Formatting 2020-12-28 23:35:47 -03:00
7428d959e0 Formatting 2020-12-28 23:31:58 -03:00
e5dc581ddf Formatting 2020-12-28 23:24:11 -03:00
41a2fa7f1e Rewrite in state machine look
- Also add new option to control internal delay of programmatic key
  sequences, when they're necessary.
2020-12-28 23:13:34 -03:00
2 changed files with 99 additions and 93 deletions

View File

@ -37,10 +37,11 @@ $ cmake --build build
``` ```
caps2esc - transforming the most useless key ever in the most useful one caps2esc - transforming the most useless key ever in the most useful one
usage: caps2esc [-h] [-m mode] usage: caps2esc [-h] [-m mode] [-t delay]
options: options:
-h show this message and exit -h show this message and exit
-t delay used for key sequences (default: 20000 microseconds)
-m mode 0: default -m mode 0: default
- caps as esc/ctrl - caps as esc/ctrl
- esc as caps - esc as caps
@ -66,29 +67,28 @@ options:
For more information about the [_Interception Tools_][interception-tools], check For more information about the [_Interception Tools_][interception-tools], check
the project's website. the project's website.
## Mouse button support ## Mouse Support
After _Interception Tools_ 0.3, `caps2esc` can work with mouse clicks. An After _Interception Tools_ 0.3.1, `caps2esc` can observe for mouse events. An
example configuration taken from my laptop: example configuration taken from my laptop:
```yaml ```yaml
SHELL: [zsh, -c] SHELL: [zsh, -c]
--- ---
- JOB: mux -c caps2esc - JOB: >
- JOB: mux -c caps2esc;
- intercept -g $DEVNODE | mux -o caps2esc mux -i caps2esc | caps2esc | uinput -d /dev/input/by-path/platform-i8042-serio-0-event-kbd
- mux -i caps2esc | caps2esc | uinput -d $DEVNODE - JOB: intercept -g $DEVNODE | mux -o caps2esc
DEVICE: DEVICE:
LINK: /dev/input/by-path/platform-i8042-serio-0-event-kbd LINK: /dev/input/by-path/platform-i8042-serio-0-event-kbd
- JOB: - JOB: intercept $DEVNODE | mux -o caps2esc
- intercept $DEVNODE | mux -o caps2esc
DEVICE: DEVICE:
LINK: /dev/input/by-path/platform-i8042-serio-4-event-mouse LINK: /dev/input/by-path/platform-i8042-serio-4-event-mouse
``` ```
For more information on the topic, check the [_Interception Tools_ For more information on the topic, check the [_Interception Tools_
README][interception-tools] about usage of the `mux` tool and device specific README][interception-tools] about usage of the `mux` tool and device specific
setups. setups, and [this discussion][issue-9-note] for more examples.
## Installation ## Installation
@ -117,7 +117,7 @@ As always, there's always a caveat:
I can't recall when I started using CAPSLOCK as both ESC and CTRL but it has I can't recall when I started using CAPSLOCK as both ESC and CTRL but it has
been quite some time already. It started when I was on OS X where it was quite been quite some time already. It started when I was on OS X where it was quite
easy to achieve using the [Karabiner][], which already provides an option to easy to achieve using the [Karabiner][], which already provides an option to
turn CTRL into CTRL/ESC (which can be coupled with OS X system settings that turn CTRL into ESC/CTRL (which can be coupled with OS X system settings that
turn CAPSLOCK into CTRL). turn CAPSLOCK into CTRL).
Moving on, permanently making Linux my home, I searched and tweaked a similar Moving on, permanently making Linux my home, I searched and tweaked a similar
@ -155,4 +155,5 @@ Copyright © 2017 Francisco Lopes da Silva
[x]: https://www.x.org [x]: https://www.x.org
[interception]: https://github.com/oblitum/Interception [interception]: https://github.com/oblitum/Interception
[interception-tools]: https://gitlab.com/interception/linux/tools [interception-tools]: https://gitlab.com/interception/linux/tools
[issue-9-note]: https://gitlab.com/interception/linux/plugins/caps2esc/-/issues/9#note_474942893
[key-repeat-fix]: https://github.com/oblitum/caps2esc/issues/1 [key-repeat-fix]: https://github.com/oblitum/caps2esc/issues/1

View File

@ -6,16 +6,11 @@
// clang-format off // clang-format off
const struct input_event const struct input_event
esc_up = {.type = EV_KEY, .code = KEY_ESC, .value = 0}, syn = {.type = EV_SYN , .code = SYN_REPORT , .value = 0},
ctrl_up = {.type = EV_KEY, .code = KEY_LEFTCTRL, .value = 0}, esc_up = {.type = EV_KEY , .code = KEY_ESC , .value = 0},
capslock_up = {.type = EV_KEY, .code = KEY_CAPSLOCK, .value = 0}, ctrl_up = {.type = EV_KEY , .code = KEY_LEFTCTRL , .value = 0},
esc_down = {.type = EV_KEY, .code = KEY_ESC, .value = 1}, esc_down = {.type = EV_KEY , .code = KEY_ESC , .value = 1},
ctrl_down = {.type = EV_KEY, .code = KEY_LEFTCTRL, .value = 1}, ctrl_down = {.type = EV_KEY , .code = KEY_LEFTCTRL , .value = 1};
capslock_down = {.type = EV_KEY, .code = KEY_CAPSLOCK, .value = 1},
esc_repeat = {.type = EV_KEY, .code = KEY_ESC, .value = 2},
ctrl_repeat = {.type = EV_KEY, .code = KEY_LEFTCTRL, .value = 2},
capslock_repeat = {.type = EV_KEY, .code = KEY_CAPSLOCK, .value = 2},
syn = {.type = EV_SYN, .code = SYN_REPORT, .value = 0};
// clang-format on // clang-format on
void print_usage(FILE *stream, const char *program) { void print_usage(FILE *stream, const char *program) {
@ -23,10 +18,11 @@ void print_usage(FILE *stream, const char *program) {
fprintf(stream, fprintf(stream,
"caps2esc - transforming the most useless key ever in the most useful one\n" "caps2esc - transforming the most useless key ever in the most useful one\n"
"\n" "\n"
"usage: %s [-h] [-m mode]\n" "usage: %s [-h] [-m mode] [-t delay]\n"
"\n" "\n"
"options:\n" "options:\n"
" -h show this message and exit\n" " -h show this message and exit\n"
" -t delay used for key sequences (default: 20000 microseconds)\n"
" -m mode 0: default\n" " -m mode 0: default\n"
" - caps as esc/ctrl\n" " - caps as esc/ctrl\n"
" - esc as caps\n" " - esc as caps\n"
@ -40,11 +36,6 @@ void print_usage(FILE *stream, const char *program) {
// clang-format on // clang-format on
} }
int equal(const struct input_event *first, const struct input_event *second) {
return first->type == second->type && first->code == second->code &&
first->value == second->value;
}
int read_event(struct input_event *event) { int read_event(struct input_event *event) {
return fread(event, sizeof(struct input_event), 1, stdin) == 1; return fread(event, sizeof(struct input_event), 1, stdin) == 1;
} }
@ -54,22 +45,46 @@ void write_event(const struct input_event *event) {
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
} }
void write_event_with_mode(struct input_event *event, int mode) {
if (event->type == EV_KEY)
switch (mode) {
case 0:
if (event->code == KEY_ESC)
event->code = KEY_CAPSLOCK;
break;
case 2:
switch (event->code) {
case KEY_ESC:
event->code = KEY_GRAVE;
break;
case KEY_GRAVE:
event->code = KEY_CAPSLOCK;
break;
}
break;
}
write_event(event);
}
int main(int argc, char *argv[]) { int main(int argc, char *argv[]) {
int opt, mode = 0; int mode = 0, delay = 20000;
while ((opt = getopt(argc, argv, "hm:")) != -1) { for (int opt; (opt = getopt(argc, argv, "ht:m:")) != -1;) {
switch (opt) { switch (opt) {
case 'h': case 'h':
return print_usage(stdout, argv[0]), EXIT_SUCCESS; return print_usage(stdout, argv[0]), EXIT_SUCCESS;
case 'm': case 'm':
mode = optarg[0] - '0'; mode = atoi(optarg);
continue;
case 't':
delay = atoi(optarg);
continue; continue;
} }
return print_usage(stderr, argv[0]), EXIT_FAILURE; return print_usage(stderr, argv[0]), EXIT_FAILURE;
} }
int capslock_is_down = 0, esc_give_up = 0;
struct input_event input; struct input_event input;
enum { START, CAPSLOCK_HELD, CAPSLOCK_IS_CTRL } state = START;
setbuf(stdin, NULL), setbuf(stdout, NULL); setbuf(stdin, NULL), setbuf(stdout, NULL);
@ -77,58 +92,48 @@ int main(int argc, char *argv[]) {
if (input.type == EV_MSC && input.code == MSC_SCAN) if (input.type == EV_MSC && input.code == MSC_SCAN)
continue; continue;
if (input.type != EV_KEY) { if (input.type != EV_KEY && input.type != EV_REL &&
input.type != EV_ABS) {
write_event(&input); write_event(&input);
continue; continue;
} }
if (capslock_is_down) { switch (state) {
if (equal(&input, &capslock_down) || case START:
equal(&input, &capslock_repeat)) if (input.type == EV_KEY && input.code == KEY_CAPSLOCK &&
continue; input.value)
state = CAPSLOCK_HELD;
if (equal(&input, &capslock_up)) { else
capslock_is_down = 0; write_event_with_mode(&input, mode);
if (esc_give_up) { break;
esc_give_up = 0; case CAPSLOCK_HELD:
write_event(&ctrl_up); if (input.type == EV_KEY && input.code == KEY_CAPSLOCK) {
continue; if (input.value == 0) {
}
write_event(&esc_down); write_event(&esc_down);
write_event(&syn); write_event(&syn);
usleep(20000); usleep(delay);
write_event(&esc_up); write_event(&esc_up);
continue; state = START;
} }
} else if ((input.type == EV_KEY && input.value == 1) ||
if (!esc_give_up && input.value) { input.type == EV_REL || input.type == EV_ABS) {
esc_give_up = 1;
write_event(&ctrl_down); write_event(&ctrl_down);
write_event(&syn); write_event(&syn);
usleep(20000); usleep(delay);
} write_event_with_mode(&input, mode);
} else if (equal(&input, &capslock_down)) { state = CAPSLOCK_IS_CTRL;
capslock_is_down = 1; } else
continue; write_event_with_mode(&input, mode);
}
switch (mode) {
case 0:
if (input.code == KEY_ESC)
input.code = KEY_CAPSLOCK;
break; break;
case 2: case CAPSLOCK_IS_CTRL:
switch (input.code) { if (input.type == EV_KEY && input.code == KEY_CAPSLOCK) {
case KEY_ESC: input.code = KEY_LEFTCTRL;
input.code = KEY_GRAVE;
break;
case KEY_GRAVE:
input.code = KEY_CAPSLOCK;
break;
}
break;
}
write_event(&input); write_event(&input);
if (input.value == 0)
state = START;
} else
write_event_with_mode(&input, mode);
break;
}
} }
} }