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

21 lines
413 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-10 13:06:34 -04:00
'speechEnabled': True,
2016-07-08 05:20:25 -04:00
'speechDriverString':'speechd',
2016-07-10 13:06:34 -04:00
'speechRate': 1,
'speechPitch': 1,
'speechModule': '',
'speechVoice': 'de',
2016-07-08 05:20:25 -04:00
'screenDriverString': 'linux',
2016-07-10 13:06:34 -04:00
'keyboardLayout': "desktop",
'brailleEnabled': False,
'soundEnabled': False,
'soundDriverString': 'sox',
'soundTheme': 'default',
'debugLevel': debug.debugLevel.DEACTIVE,
'punctuationLevel': 1
2016-07-08 05:01:06 -04:00
}