fenrir/src/fenrir-package/core/environment.py

26 lines
478 B
Python
Raw Normal View History

#!/bin/python
runtime = {
'running':True,
'columns': 0,
'lines': 0,
'screenDriver': '/dev/vcsa',
'delta': '',
'oldCursor':{'x':0,'y':0},
'oldContentBytes': b'',
'oldContentText': '',
'oldContentAttrib': b'',
'newCursor':{'x':0,'y':0},
'newContentBytes': b'',
'newContentText': '',
'newContentAttrib': b'',
'oldTTY':'0',
'newTTY':'0',
'speechDriverString':'',
'speechDriver': None,
'screenDriverString': '',
'screenDriver': None,
'soundDriverString': '',
'soundDriver': None,
}