30 lines
367 B
INI
30 lines
367 B
INI
|
nodes = {
|
||
|
stdin = {
|
||
|
type = "getchar";
|
||
|
options = {
|
||
|
namespace = 0;
|
||
|
};
|
||
|
};
|
||
|
print = {
|
||
|
type = "print";
|
||
|
options = {};
|
||
|
};
|
||
|
clickpad = {
|
||
|
type = "evdev";
|
||
|
options = {
|
||
|
file = "/dev/input/event7";
|
||
|
namespace = 1;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
channels = ({
|
||
|
from: ("stdin", 0);
|
||
|
to: ("print", 0);
|
||
|
}, {
|
||
|
from: ("clickpad", 0);
|
||
|
to: ("print", 1);
|
||
|
});
|
||
|
|
||
|
// vim: ft=libconfig
|