summaryrefslogtreecommitdiff
path: root/Evemu.mdwn
diff options
context:
space:
mode:
authorbentiss <bentiss@web>2013-05-28 16:30:15 -0700
committerwww <iki-www@freedesktop.org>2013-05-28 16:30:15 -0700
commit04f1327e6015e351be4e6ca8fecd4ea3b087c871 (patch)
tree68a492e814aef6c90144ad78ca49c87a209a2418 /Evemu.mdwn
parentf8020e12eae1b278277ead8961d1db7b64dab342 (diff)
fix missing code snippets
Diffstat (limited to 'Evemu.mdwn')
-rw-r--r--Evemu.mdwn9
1 files changed, 5 insertions, 4 deletions
diff --git a/Evemu.mdwn b/Evemu.mdwn
index 6fd6b3ed..b914b3f9 100644
--- a/Evemu.mdwn
+++ b/Evemu.mdwn
@@ -20,17 +20,18 @@ For Red Hat Enterprise Linux 6 and compatible distributions, a [[yum repository|
## Running evemu
evemu provides multiple binaries for recording and replaying devices:
+
evemu-describe /dev/input/event0 > mydevice.desc
-: Prints a description of the device specified into mydevice.desc.
+Prints a description of the device specified into mydevice.desc.
evemu-record /dev/input/event0 > mydevice.events
-: Prints the list of events from the device into mydevice.events until terminated by Ctrl + C
+Prints the list of events from the device into mydevice.events until terminated by Ctrl + C
evemu-device mydevice.desc
-: Creates a virtual input device based on the description created by evemu-describe and prints the device node.
+Creates a virtual input device based on the description created by evemu-describe and prints the device node.
evemu-play /dev/input/event12 < mydevice.events
-: Sends the events in mydevice.events through the given device node, thus replaying them. mydevice.events must be generated by evemu-record
+Sends the events in mydevice.events through the given device node, thus replaying them. mydevice.events must be generated by evemu-record