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',
|
2016-08-08 03:34:57 -04:00
|
|
|
'volume':1.0,
|
2016-07-11 04:34:45 -04:00
|
|
|
},
|
|
|
|
'speech':{
|
|
|
|
'enabled': True,
|
|
|
|
'driver':'speechd',
|
2016-08-08 05:07:40 -04:00
|
|
|
'rate': 0.75,
|
|
|
|
'pitch': 0.5,
|
2016-07-11 04:34:45 -04:00
|
|
|
'module': '',
|
|
|
|
'voice': 'de',
|
2016-07-14 18:21:23 -04:00
|
|
|
'language': 'de',
|
2016-08-08 03:34:57 -04:00
|
|
|
'volume': 1.0,
|
|
|
|
'autoReadIncomming':True,
|
2016-07-11 04:34:45 -04:00
|
|
|
},
|
|
|
|
'braille':{
|
|
|
|
'enabled': False,
|
|
|
|
'layout': 'en',
|
|
|
|
},
|
|
|
|
'screen':{
|
|
|
|
'driver': 'linux',
|
2016-08-26 04:18:07 -04:00
|
|
|
'encoding': 'cp850',
|
2016-08-08 15:10:43 -04:00
|
|
|
'screenUpdateDelay':0.4,
|
2016-08-30 05:50:15 -04:00
|
|
|
'suspendingScreen':'1,2',
|
|
|
|
'autodetectSuspendingScreen':False,
|
2016-07-11 04:34:45 -04:00
|
|
|
},
|
|
|
|
'general':{
|
|
|
|
'keyboardLayout': "desktop",
|
|
|
|
'debugLevel': debug.debugLevel.DEACTIVE,
|
2016-08-08 05:07:40 -04:00
|
|
|
'punctuationLevel': 1,
|
2016-08-24 19:50:02 -04:00
|
|
|
'numberOfClipboards': 10,
|
2016-08-11 17:16:44 -04:00
|
|
|
'fenrirKeys':['82'],
|
2016-08-28 13:24:15 -04:00
|
|
|
'timeFormat':'%I:%M%P',
|
|
|
|
'dateFormat':'%A, %B %d, %Y',
|
2016-07-17 08:25:59 -04:00
|
|
|
},
|
2016-08-19 11:21:52 -04:00
|
|
|
'promote':{
|
|
|
|
'enabled': True,
|
|
|
|
'inactiveTimeoutSec':120,
|
|
|
|
'list':'',
|
|
|
|
},
|
2016-07-17 08:25:59 -04:00
|
|
|
'keyboard':{
|
2016-08-08 03:34:57 -04:00
|
|
|
'device':"all",
|
2016-08-09 20:09:49 -04:00
|
|
|
'grabDevices':True,
|
|
|
|
'ignoreShortcuts':False,
|
2016-07-17 08:25:59 -04:00
|
|
|
'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
|
|
|
}
|