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

48 lines
829 B
Python
Raw Normal View History

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',
'volume':1.0,
2016-07-11 04:34:45 -04:00
},
'speech':{
'enabled': True,
'driver':'speechd',
'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',
'volume': 1.0,
'autoReadIncomming':True,
2016-07-11 04:34:45 -04:00
},
'braille':{
'enabled': False,
'layout': 'en',
},
'screen':{
'driver': 'linux',
2016-08-08 15:10:43 -04:00
'screenUpdateDelay':0.4,
2016-07-11 04:34:45 -04:00
},
'general':{
'keyboardLayout': "desktop",
'debugLevel': debug.debugLevel.DEACTIVE,
'punctuationLevel': 1,
2016-08-11 17:16:44 -04:00
'fenrirKeys':['82'],
2016-07-17 08:25:59 -04:00
},
'keyboard':{
'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
}