Update settings.py

This commit is contained in:
chrys87 2016-07-11 10:34:45 +02:00 committed by GitHub
parent 34336fbb2a
commit bb97ccd757

View File

@ -3,18 +3,29 @@
from utils import debug
settings = {
'speechEnabled': True,
'speechDriverString':'speechd',
'speechRate': 1,
'speechPitch': 1,
'speechModule': '',
'speechVoice': 'de',
'screenDriverString': 'linux',
'sound': {
'enabled': False,
'driver': 'sox',
'theme': 'default',
},
'speech':{
'enabled': True,
'driver':'speechd',
'rate': 1,
'pitch': 1,
'module': '',
'voice': 'de',
},
'braille':{
'enabled': False,
'layout': 'en',
},
'screen':{
'driver': 'linux',
},
'general':{
'keyboardLayout': "desktop",
'brailleEnabled': False,
'soundEnabled': False,
'soundDriverString': 'sox',
'soundTheme': 'default',
'debugLevel': debug.debugLevel.DEACTIVE,
'punctuationLevel': 1
}
}