forgett files

This commit is contained in:
chrys 2016-07-09 01:36:27 +02:00
parent 1c696ed5ca
commit 5d39703c77
15 changed files with 41 additions and 0 deletions

10
config/keyboard/Readme.md Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,11 @@
#!/bin/python
class command():
def __init__(self):
pass
def run(self, environment):
return environment
def setCallback(self, callback):
pass
def shutdown(self):
pass

View File

@ -0,0 +1,13 @@
#!/bin/python
from commands import curr_line
from commands import shut_up
commandInfo = {
'currCommand': '',
'commandCueue':[]
}
commands = {
'curr_line': curr_line.command(),
'shut_up': shut_up.command()
}

View File

@ -0,0 +1,7 @@
#!/bin/python
input = {
'currShortcut': {},
'currShortcutString': ''
}