Rename files.

This commit is contained in:
Merlijn Wajer 2013-05-14 23:46:18 +02:00
parent 8c62a5910e
commit 7ffbabe6ad
2 changed files with 3 additions and 1 deletions

1
py/create.py → py/input-create Normal file → Executable file
View File

@ -1,3 +1,4 @@
#!/usr/bin/env python
import linux_uinput, ctypes, fcntl, os, sys
from cinput import *
from mapper import KeyMapper, parse_conf

3
py/read.py → py/input-read Normal file → Executable file
View File

@ -1,3 +1,4 @@
#!/usr/bin/env python
import linux_uinput, ctypes, fcntl, os, sys
from cinput import *
from mapper import KeyMapper, parse_conf
@ -10,7 +11,7 @@ except ImportError:
import optparse
_usage = 'python read.py /dev/input/event<0> ... /dev/input/event<N>'
_usage = 'input-read /dev/input/event<0> ... /dev/input/event<N>'
parser = optparse.OptionParser(description='Read input devices.',
usage = _usage,
version='0.01')