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