event-sequence-transformation/config.cfg

53 lines
729 B
INI
Raw Normal View History

2024-08-16 12:58:19 +03:00
enums = {
namespaces: ["stdin", "clickpad"];
2024-08-16 11:12:20 +03:00
};
2024-08-16 23:48:09 +03:00
predicates = {
is_evdev = {
type = "code_ns";
min = "namespaces.clickpad";
max = "namespaces.clickpad";
};
key_event = {
type = "and";
args = (
"is_evdev",
{
type = "code_major";
min = "event_type.KEY";
max = "event_type.KEY";
}
);
}
};
nodes = {
stdin = {
type = "getchar";
options = {
2024-08-16 12:58:19 +03:00
namespace = "namespaces.stdin";
};
};
print = {
type = "print";
options = {};
};
clickpad = {
type = "evdev";
options = {
file = "/dev/input/event7";
2024-08-16 12:58:19 +03:00
namespace = "namespaces.clickpad";
};
};
};
channels = ({
from: ("stdin", 0);
to: ("print", 0);
}, {
from: ("clickpad", 0);
to: ("print", 1);
});
// vim: ft=libconfig