2016-07-08 05:01:06 -04:00
|
|
|
#!/bin/python
|
|
|
|
|
2016-07-08 06:21:50 -04:00
|
|
|
from utils import debug
|
|
|
|
|
2016-07-08 05:01:06 -04:00
|
|
|
settings = {
|
2016-07-11 04:34:45 -04:00
|
|
|
'sound': {
|
|
|
|
'enabled': False,
|
|
|
|
'driver': 'sox',
|
|
|
|
'theme': 'default',
|
|
|
|
},
|
|
|
|
'speech':{
|
|
|
|
'enabled': True,
|
|
|
|
'driver':'speechd',
|
|
|
|
'rate': 1,
|
|
|
|
'pitch': 1,
|
|
|
|
'module': '',
|
|
|
|
'voice': 'de',
|
2016-07-14 18:21:23 -04:00
|
|
|
'language': 'de',
|
|
|
|
'volume': 100
|
2016-07-11 04:34:45 -04:00
|
|
|
},
|
|
|
|
'braille':{
|
|
|
|
'enabled': False,
|
|
|
|
'layout': 'en',
|
|
|
|
},
|
|
|
|
'screen':{
|
|
|
|
'driver': 'linux',
|
|
|
|
},
|
|
|
|
'general':{
|
|
|
|
'keyboardLayout': "desktop",
|
|
|
|
'debugLevel': debug.debugLevel.DEACTIVE,
|
|
|
|
'punctuationLevel': 1
|
2016-07-17 08:25:59 -04:00
|
|
|
},
|
|
|
|
'keyboard':{
|
|
|
|
'keyboardLayout': "desktop",
|
|
|
|
'charEcho':False,
|
2016-08-06 09:33:17 -04:00
|
|
|
'charDeleteEcho':True,
|
2016-07-17 08:25:59 -04:00
|
|
|
'wordEcho':True,
|
2016-08-05 22:47:41 -04:00
|
|
|
'interruptOnKeyPress': True,
|
2016-07-11 04:34:45 -04:00
|
|
|
}
|
2016-07-08 05:01:06 -04:00
|
|
|
}
|