20 lines
333 B
Python
20 lines
333 B
Python
#!/bin/python
|
|
import time
|
|
|
|
input = {
|
|
'currInput': {},
|
|
'prevInput': {},
|
|
'currEvent': None,
|
|
'firstEvent': None
|
|
'firstEvent': None,
|
|
'currShortcutString': '',
|
|
'consumeKey': False,
|
|
'fenrirKey': ['82'],
|
|
'keyForeward': False,
|
|
'lastInputTime':time.time(),
|
|
'oldNumLock': True,
|
|
'newNumLock':True,
|
|
'oldCapsLock':False,
|
|
'newCapsLock':False
|
|
}
|