2016-07-07 13:43:31 -04:00
|
|
|
#!/bin/python
|
|
|
|
|
2016-07-08 05:08:12 -04:00
|
|
|
from core import settings
|
|
|
|
from core import soundIcons
|
|
|
|
from core import bindings
|
2016-07-08 05:13:27 -04:00
|
|
|
from core import runtime
|
|
|
|
from core import screenData
|
|
|
|
from core import generalInformation
|
2016-07-08 04:59:40 -04:00
|
|
|
|
2016-07-08 05:13:27 -04:00
|
|
|
environment = {
|
2016-07-08 05:18:29 -04:00
|
|
|
'screenData' = screenData.screenData,
|
|
|
|
'runtime' = runtime.runtime,
|
|
|
|
'generalInformation' = generalInformation.generalInformation,
|
2016-07-08 05:09:19 -04:00
|
|
|
'settings' = settings.settings,
|
|
|
|
'bindings' = bindings.bindings,
|
|
|
|
'soundIcons' = soundIcons.soundIcons,
|
2016-07-08 05:18:29 -04:00
|
|
|
'autospeak' = ['speak_delta']
|
2016-07-07 13:56:46 -04:00
|
|
|
}
|