fenrir/config/settings/settings.conf.storm

205 lines
5.7 KiB
Plaintext
Raw Normal View History

2017-10-19 14:56:53 -04:00
[sound]
enabled=True
2021-06-16 00:12:57 -04:00
driver=gstreamerDriver
2017-10-19 14:56:53 -04:00
theme=default
2021-06-16 00:12:57 -04:00
volume=0.5
2017-10-19 14:56:53 -04:00
# shell commands for generic sound driver
genericPlayFileCommand=play -q -v fenrirVolume fenrirSoundFile
genericFrequencyCommand=play -q -v fenrirVolume -n -c1 synth fenrirDuration sine fenrirFrequence
[speech]
enabled=True
2021-06-16 00:12:57 -04:00
driver=speechdDriver
#driver=genericDriver
2017-10-21 11:01:02 -04:00
serverPath=
2018-07-07 12:49:46 -04:00
rate=0.80
2017-10-19 14:56:53 -04:00
pitch=0.5
# Pitch for capital letters
capitalPitch=0.9
2021-06-16 00:12:57 -04:00
module=espeak-ng
2017-10-19 14:56:53 -04:00
voice=en-us
2021-06-16 00:12:57 -04:00
language=en-us
volume=0.6
2017-10-19 14:56:53 -04:00
autoReadIncoming=True
2024-03-13 00:56:53 -04:00
# Speak individual numbers instead of whole string.
readNumbersAsDigits': False
2017-10-19 14:56:53 -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)
2018-03-12 13:52:14 -04:00
genericSpeechCommand=espeak -a fenrirVolume -s fenrirRate -p fenrirPitch -v fenrirVoice -- "fenrirText"
2017-10-19 14:56:53 -04:00
# 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
fenrirMaxRate=890
[braille]
enabled=False
driver=dummyDriver
layout=en
# to what should the flush timeout relate to
# 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)
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
# define the cell on the Braille device where fenrir should scroll and keep the cursor
# 0 = first cell on device
# -1 = last cell on device
# >0 = fix cell number
fixCursorOnCell=-1
#How should the braille follow the focus
# none = no automatic toggle command used
# review = priority to review
# last = follow last used cursor
cursorFollowMode=review
# number of cells in panning (horizontal)
# 0 = display size, >0 number of cells
panSizeHorizontal=0
[screen]
driver=vcsaDriver
encoding=auto
screenUpdateDelay=0.05
suspendingScreen=
autodetectSuspendingScreen=True
[keyboard]
driver=evdevDriver
# filter input devices NOMICE, ALL or a DEVICE NAME
device=ALL
grabDevices=True
ignoreShortcuts=False
keyboardLayout=desktop
2022-02-22 11:47:09 -05:00
# 0 = None
# 1 = always
# 2 = only while capslock
charEchoMode=2
2017-10-19 14:56:53 -04:00
charDeleteEcho=True
wordEcho=False
interruptOnKeyPress=True
# you can filter the keys on that the speech should interrupt (empty = all keys, otherwhise the given keys)
interruptOnKeyPressFilter=
# timeout for double tap in sec
doubleTapTimeout=0.2
[general]
2021-06-16 00:12:57 -04:00
autoPresentIndentMode=1
2019-09-06 18:43:23 -04:00
debugLevel=0
2017-10-19 14:56:53 -04:00
# debugMode sets where the debug output should send to:
2019-09-06 18:43:23 -04:00
# debugMode=File writes to debugFile (Default:/tmp/fenrir-PID.log)
2017-10-19 14:56:53 -04:00
# debugMode=Print just prints on the screen
debugMode=File
2019-09-06 18:43:23 -04:00
debugFile=
2017-10-19 14:56:53 -04:00
punctuationProfile=default
punctuationLevel=some
respectPunctuationPause=True
newLinePause=True
numberOfClipboards=10
# used path for "export_clipboard_to_file"
# $user is replaced by username
clipboardExportPath=/tmp/fenrirClipboard
emoticons=True
2021-06-16 00:12:57 -04:00
fenrirKeys=KEY_KP0,KEY_CAPSLOCK
scriptKeys=KEY_COMPOSE,KEY_META
2017-10-19 14:56:53 -04:00
timeFormat=%H:%M:%P
dateFormat="%A, %B %d, %Y"
autoSpellCheck=True
spellCheckLanguage=en_US
2018-06-17 18:22:16 -04:00
scriptPath=/usr/share/fenrirscreenreader/scripts
2017-10-19 14:56:53 -04:00
# overload commands, and create new one without changing Fenrir default
commandPath=
#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
attributeFormatString=Background fenrirBGColor,Foreground fenrirFGColor,fenrirUnderline,fenrirBold,fenrirBlink, Font fenrirFont,Fontsize fenrirFontSize
2018-03-24 14:47:44 -04:00
autoPresentIndent=False
2018-05-28 18:06:52 -04:00
# play a sound when attributes are changeing
2018-07-07 12:49:46 -04:00
hasAttributes=False
2018-03-25 17:03:53 -04:00
# shell for PTY emulatiun (empty = default shell)
shell=
2017-10-19 14:56:53 -04:00
[focus]
#follow the text cursor
cursor=True
#follow highlighted text changes
highlight=False
2018-06-29 11:30:23 -04:00
2018-09-04 16:25:12 -04:00
[remote]
2018-09-07 15:19:21 -04:00
enable=True
2018-09-09 13:08:18 -04:00
# driver
# unixDriver = unix sockets
# tcpDriver = tcp (localhost only)
driver=unixDriver
2018-09-07 15:19:21 -04:00
# tcp port
port=22447
# socket filepath
socketFile=
2018-09-04 16:25:12 -04:00
# allow settings to overwrite
enableSettingsRemote=True
# allow commands to be executed
enableCommandRemote=True
2018-06-29 11:30:23 -04:00
[barrier]
enabled=True
2018-07-07 09:37:10 -04:00
leftBarriers=│└┌─
rightBarriers=│┘┐─
2017-10-19 14:56:53 -04:00
[review]
lineBreak=True
endOfScreen=True
# leave the review when pressing a key
leaveReviewOnCursorChange=True
# leave the review when changing the screen
leaveReviewOnScreenChange=True
[promote]
enabled=True
inactiveTimeoutSec=120
list=
2019-02-12 14:04:46 -05:00
[menu]
vmenuPath=
2019-02-13 16:11:47 -05:00
quickMenu=speech#rate;speech#pitch;speech#volume
2019-02-12 14:04:46 -05:00
2017-10-19 14:56:53 -04:00
[time]
# automatic time anouncement
2021-06-16 00:12:57 -04:00
enabled=True
2017-10-19 14:56:53 -04:00
# 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
2021-06-16 00:12:57 -04:00
onMinutes=00
2017-10-19 14:56:53 -04:00
# announce via soundicon
announce=True
# interrupt current speech for time announcement
interrupt=False