20 lines
333 B
Python
Raw Normal View History

2016-07-09 01:36:27 +02:00
#!/bin/python
import time
2016-07-09 01:36:27 +02:00
input = {
'currInput': {},
'prevInput': {},
'currEvent': None,
2016-09-12 23:05:35 +02:00
'firstEvent': None
'firstEvent': None,
2016-08-11 23:16:44 +02:00
'currShortcutString': '',
'consumeKey': False,
'fenrirKey': ['82'],
'keyForeward': False,
'lastInputTime':time.time(),
2016-09-12 23:05:35 +02:00
'oldNumLock': True,
'newNumLock':True,
'oldCapsLock':False,
'newCapsLock':False
2016-07-09 01:36:27 +02:00
}