add new review options
This commit is contained in:
parent
c39396b181
commit
e4b0327aca
@ -116,6 +116,10 @@ scriptPath=/usr/share/fenrir/scripts
|
|||||||
cursor=True
|
cursor=True
|
||||||
highlight=False
|
highlight=False
|
||||||
|
|
||||||
|
[review]
|
||||||
|
newLine=True
|
||||||
|
endOfScreen=True
|
||||||
|
|
||||||
[promote]
|
[promote]
|
||||||
enabled=True
|
enabled=True
|
||||||
inactiveTimeoutSec=120
|
inactiveTimeoutSec=120
|
||||||
|
@ -118,6 +118,10 @@ cursor=True
|
|||||||
#follow highlighted text changes
|
#follow highlighted text changes
|
||||||
highlight=False
|
highlight=False
|
||||||
|
|
||||||
|
[review]
|
||||||
|
newLine=True
|
||||||
|
endOfScreen=True
|
||||||
|
|
||||||
[promote]
|
[promote]
|
||||||
enabled=True
|
enabled=True
|
||||||
inactiveTimeoutSec=120
|
inactiveTimeoutSec=120
|
||||||
|
@ -118,6 +118,10 @@ cursor=True
|
|||||||
#follow highlighted text changes
|
#follow highlighted text changes
|
||||||
highlight=False
|
highlight=False
|
||||||
|
|
||||||
|
[review]
|
||||||
|
newLine=True
|
||||||
|
endOfScreen=True
|
||||||
|
|
||||||
[promote]
|
[promote]
|
||||||
enabled=True
|
enabled=True
|
||||||
inactiveTimeoutSec=120
|
inactiveTimeoutSec=120
|
||||||
|
@ -68,6 +68,10 @@ cursor=True
|
|||||||
#follow highlighted text changes
|
#follow highlighted text changes
|
||||||
highlight=False
|
highlight=False
|
||||||
|
|
||||||
|
[review]
|
||||||
|
newLine=True
|
||||||
|
endOfScreen=True
|
||||||
|
|
||||||
[promote]
|
[promote]
|
||||||
enabled=True
|
enabled=True
|
||||||
inactiveTimeoutSec=120
|
inactiveTimeoutSec=120
|
||||||
|
@ -8,29 +8,29 @@ from core import debug
|
|||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
'sound': {
|
'sound': {
|
||||||
'enabled': True,
|
'enabled': True,
|
||||||
'driver': 'generic',
|
'driver': 'generic',
|
||||||
'theme': 'default',
|
'theme': 'default',
|
||||||
'volume': 1.0,
|
'volume': 1.0,
|
||||||
'genericPlayFileCommand': 'play -q -v fenrirVolume fenrirSoundFile',
|
'genericPlayFileCommand': 'play -q -v fenrirVolume fenrirSoundFile',
|
||||||
'genericFrequencyCommand': 'play -q -v fenrirVolume -n -c1 synth fenrirDuration sine fenrirFrequence'
|
'genericFrequencyCommand': 'play -q -v fenrirVolume -n -c1 synth fenrirDuration sine fenrirFrequence'
|
||||||
},
|
},
|
||||||
'speech':{
|
'speech':{
|
||||||
'enabled': True,
|
'enabled': True,
|
||||||
'driver': 'speechd',
|
'driver': 'speechd',
|
||||||
'rate': 0.75,
|
'rate': 0.75,
|
||||||
'pitch': 0.5,
|
'pitch': 0.5,
|
||||||
'capitalPitch':0.8,
|
'capitalPitch':0.8,
|
||||||
'volume': 1.0,
|
'volume': 1.0,
|
||||||
'module': 'espeak',
|
'module': 'espeak',
|
||||||
'voice': '',
|
'voice': '',
|
||||||
'language': 'english-us',
|
'language': 'english-us',
|
||||||
'autoReadIncoming': True,
|
'autoReadIncoming': True,
|
||||||
},
|
},
|
||||||
'braille':{
|
'braille':{
|
||||||
'enabled': False,
|
'enabled': False,
|
||||||
'driver':'brlapi',
|
'driver':'brlapi',
|
||||||
'layout': 'en',
|
'layout': 'en',
|
||||||
},
|
},
|
||||||
'screen':{
|
'screen':{
|
||||||
'driver': 'linux',
|
'driver': 'linux',
|
||||||
@ -59,6 +59,10 @@ settings = {
|
|||||||
'cursor': True,
|
'cursor': True,
|
||||||
'highlight': False,
|
'highlight': False,
|
||||||
},
|
},
|
||||||
|
'review':{
|
||||||
|
'newLine': True,
|
||||||
|
'endOfScreen': True,
|
||||||
|
},
|
||||||
'promote':{
|
'promote':{
|
||||||
'enabled': True,
|
'enabled': True,
|
||||||
'inactiveTimeoutSec': 120,
|
'inactiveTimeoutSec': 120,
|
||||||
|
Loading…
Reference in New Issue
Block a user