summaryrefslogtreecommitdiff
path: root/intcp/resc/intcp/main.c
blob: 383ef5b6be779a06c2ed412fbd509bcd047e47b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include <stdio.h>
#include <stdlib.h>
#include <linux/input.h>

int main(void) {
    setbuf(stdin, NULL); setbuf(stdout, NULL);

    struct input_event event;
    while (fread(&event, sizeof(event), 1, stdin)) {
        if (event.type == EV_KEY) {
            switch (event.code) {
                case KEY_CAPSLOCK:
                    event.code = KEY_LEFTCTRL;
                    break;
                case KEY_LEFTALT:
                    event.code = KEY_LEFTMETA;
                    break;
                case KEY_102ND:
                    event.code = KEY_LEFTALT;
                    break;
            }
        }

        fwrite(&event, sizeof(event), 1, stdout);
    }
}