fenrir/config/settings/settings.conf.storm

167 lines
4.9 KiB
Plaintext
Raw Normal View History

2016-08-14 19:24:13 -04:00
[sound]
enabled=True
driver=genericDriver
2016-08-14 19:24:13 -04:00
theme=default
volume=1.0
2016-09-16 07:09:55 -04:00
# shell commands for generic sound driver
genericPlayFileCommand=play -q -v fenrirVolume fenrirSoundFile
2016-09-16 07:29:06 -04:00
genericFrequencyCommand=play -q -v fenrirVolume -n -c1 synth fenrirDuration sine fenrirFrequence
2016-08-14 19:24:13 -04:00
[speech]
enabled=True
2017-05-07 15:20:44 -04:00
driver=speechdDriver
#driver=genericDriver
rate=0.95
2016-08-14 19:24:13 -04:00
pitch=0.5
# Pitch for capital letters
capitalPitch=0.9
2016-08-14 19:24:13 -04:00
module=espeak
2017-05-07 14:57:56 -04:00
voice=en-us
2016-08-16 17:34:23 -04:00
language=english-us
2016-08-14 19:24:13 -04:00
volume=1.0
2016-09-28 16:00:51 -04:00
autoReadIncoming=True
2016-08-14 19:24:13 -04:00
# genericSpeechCommand is the command that is executed for talking
# the following variables are replaced with values
# fenrirText = is the text that should be spoken
# fenrirModule = may be the speech module like used in speech-dispatcher, not every TTY need this
# fenrirLanguage = the language
# fenrirVoice = is the current voice that should be used
# the current volume, pitch and rate is calculated like this
# value = min + settingValue * (min - max )
# fenrirVolume = is replaced with the current volume
# fenrirPitch = is replaced with the current pitch
# fenrirRate = is replaced with the current speed (speech rate)
genericSpeechCommand=espeak -a fenrirVolume -s fenrirRate -p fenrirPitch -v fenrirVoice "fenrirText"
# these are the min and max values of the TTS system that is used in genericSpeechCommand
fenrirMinVolume=0
fenrirMaxVolume=200
fenrirMinPitch=0
fenrirMaxPitch=99
fenrirMinRate=80
2017-05-07 15:20:44 -04:00
fenrirMaxRate=890
2016-08-14 19:24:13 -04:00
[braille]
enabled=False
2017-07-24 15:51:12 -04:00
driver=dummyDriver
2016-08-14 19:24:13 -04:00
layout=en
2017-01-30 10:00:36 -05:00
# to what should the flush timeout relate to
2017-01-30 14:30:49 -05:00
# word = flush after (number of words to display) * seconds
# char = flush after (number of chars to display) * seconds
# fix = flush after X seconds
# none = no automatic flush (manual via shortcut)
2017-01-30 10:00:36 -05:00
flushMode=word
# seconds to flush or
# -1 = no automatic flush (manual via shortcut)
flushTimeout=3
# how should the cursor be focused?
# page = if cursor cross the border move to next page and start at beginn
# fixCell = ajust the cursor on an special cell where it is always placed. the display scroll here more smooth.
cursorFocusMode=page
2017-01-30 13:58:40 -05:00
# define the cell on the Braille device where fenrir should scroll and keep the cursor
2017-01-30 13:55:48 -05:00
# 0 = first cell on device
# -1 = last cell on device
# >0 = fix cell number
2017-01-30 13:58:40 -05:00
fixCursorOnCell=-1
2017-02-02 13:06:53 -05:00
#How should the braille follow the focus
# none = no automatic toggle command used
# review = priority to review
# last = follow last used cursor
cursorFollowMode=review
2017-02-02 14:02:20 -05:00
# number of cells in panning (horizontal)
2017-02-02 13:06:53 -05:00
# 0 = display size, >0 number of cells
2017-02-02 14:02:20 -05:00
panSizeHorizontal=0
2016-08-14 19:24:13 -04:00
[screen]
2017-01-26 18:26:35 -05:00
driver=vcsaDriver
2017-07-17 18:58:54 -04:00
encoding=auto
2016-12-12 14:45:47 -05:00
screenUpdateDelay=0.05
suspendingScreen=
autodetectSuspendingScreen=True
2016-08-14 19:24:13 -04:00
[keyboard]
driver=evdevDriver
2016-11-01 16:55:08 -04:00
# filter input devices NOMICE, ALL or a DEVICE NAME
device=ALL
2016-08-14 19:24:13 -04:00
grabDevices=True
ignoreShortcuts=False
2016-09-28 07:57:54 -04:00
keyboardLayout=desktop
2016-08-14 19:24:13 -04:00
charEcho=False
charDeleteEcho=True
2016-08-30 19:02:17 -04:00
wordEcho=False
2016-09-28 07:57:54 -04:00
interruptOnKeyPress=True
# you can filter the keys on that the speech should interrupt (empty = all keys, otherwhise the given keys)
interruptOnKeyPressFilter=
2016-09-13 04:33:28 -04:00
# timeout for double tap in sec
doubleTapTimeout=0.2
2016-08-14 19:24:13 -04:00
[general]
2017-05-07 14:00:33 -04:00
debugLevel=1
# debugMode sets where the debug output should send to:
# debugMode=File writes to /var/log/fenrir.log
# debugMode=Print just prints on the screen
debugMode=File
2016-10-12 15:38:08 -04:00
punctuationProfile=default
2016-10-04 11:01:50 -04:00
punctuationLevel=some
respectPunctuationPause=True
2016-10-18 09:17:20 -04:00
newLinePause=True
2016-08-24 19:50:02 -04:00
numberOfClipboards=10
2017-06-03 17:24:37 -04:00
# used path for "export_clipboard_to_file"
# $user is replaced by username
clipboardExportPath=/tmp/fenrirClipboard
2016-10-12 16:22:02 -04:00
emoticons=True
2016-10-18 13:25:37 -04:00
fenrirKeys=KEY_KP0,KEY_META
scriptKey=KEY_COMPOSE
2016-08-25 19:42:31 -04:00
timeFormat=%H:%M:%P
dateFormat="%A, %B %d, %Y"
2016-09-05 10:49:15 -04:00
autoSpellCheck=True
spellCheckLanguage=en_US
2016-11-04 16:31:42 -04:00
scriptPath=/usr/share/fenrir/scripts
2017-02-23 09:22:05 -05:00
# overload commands, and create new one without changing Fenrir default
commandPath=
2017-08-13 16:38:12 -04:00
#fenrirBGColor = the backgroundcolor
#fenrirFGColor = the foregroundcolor
#fenrirUnderline = speak the underline attribute
#fenrirBold = speak the bold attribute
#fenrirBlink = speak the blink attribute
#fenrirFont = the font
#fenrirFontSize = the fontsize
2017-08-13 19:04:25 -04:00
attributeFormatString=Background fenrirBGColor,Foreground fenrirFGColor,fenrirUnderline,fenrirBold,fenrirBlink, Font fenrirFont,Fontsize fenrirFontSize
2016-11-04 16:57:55 -04:00
[focus]
2016-11-04 20:21:28 -04:00
#follow the text cursor
2016-11-04 16:57:55 -04:00
cursor=True
2016-11-04 20:21:28 -04:00
#follow highlighted text changes
2016-11-04 16:57:55 -04:00
highlight=False
2016-12-07 17:54:30 -05:00
[review]
lineBreak=True
2016-12-07 17:54:30 -05:00
endOfScreen=True
# leave the review when pressing a key
leaveReviewOnCursorChange=True
# leave the review when changing the screen
leaveReviewOnScreenChange=True
2016-12-07 17:54:30 -05:00
[promote]
enabled=True
inactiveTimeoutSec=120
list=
2016-11-09 15:28:18 -05:00
[time]
# automatic time anouncement
2016-11-09 15:28:18 -05:00
enabled=False
# present time
presentTime=True
# present date (on change)
presentDate=True
# present time after x seconds
delaySec=0
# present time after to given minutes example every 15 minutes: 00,15,30,45
# if delaySec is >0 onMinutes is ignored
onMinutes=00,30
# announce via soundicon
announce=True
# interrupt current speech for time announcement
interrupt=False