2016-08-28 19:40:14 +02:00
[sound]
2016-09-17 01:04:49 +02:00
# Turn sound on or off:
2016-08-28 19:40:14 +02:00
enabled=True
2016-09-17 01:04:49 +02:00
2017-03-12 02:02:00 +01:00
# Select the driver used to play sounds, choices are genericDriver and gstreamerDriver.
2016-09-17 01:04:49 +02:00
# Sox is the default.
2017-01-27 00:24:24 +01:00
#driver=gstreamerDriver
driver=genericDriver
2016-09-17 01:04:49 +02:00
# Sound themes. This is the pack of sounds used for sound alerts.
# Sound packs may be located at /usr/share/sounds
# For system wide availability, or ~/.local/share/fenrir/sounds
# For the current user.
2016-08-28 19:40:14 +02:00
theme=default
2016-09-17 01:04:49 +02:00
2017-02-20 12:38:32 +11:00
# Sound volume controls how loud the sounds for your selected soundpack are.
2016-09-17 01:04:49 +02:00
# 0 is quietest, 1.0 is loudest.
2016-08-28 19:40:14 +02:00
volume=1.0
2016-09-17 01:04:49 +02:00
2016-09-16 12:58:55 +02:00
# shell commands for generic sound driver
2017-02-20 12:38:32 +11:00
# the folowing variable are substituted
2016-09-17 01:04:49 +02:00
# fenrirVolume = the current volume setting
# fenrirSoundFile = the soundfile for an soundicon
# fenrirFrequence = the frequence to play
# fenrirDuration = the duration of the frequence
2017-02-20 12:38:32 +11:00
# the following command is used to play a soundfile
2016-09-16 13:08:25 +02:00
genericPlayFileCommand=play -q -v fenrirVolume fenrirSoundFile
2017-02-20 12:38:32 +11:00
#the following command is used to generate a frequency beep
2016-09-16 13:27:33 +02:00
genericFrequencyCommand=play -q -v fenrirVolume -n -c1 synth fenrirDuration sine fenrirFrequence
2016-09-16 12:58:55 +02:00
2016-08-28 19:40:14 +02:00
[speech]
2016-09-17 01:04:49 +02:00
# Turn speech on or off:
2016-08-28 19:40:14 +02:00
enabled=True
2016-09-17 01:04:49 +02:00
2017-03-02 20:20:15 +01:00
# Select speech driver, options are speechdDriver (default), genericDriver or espeakDriver:
2017-01-27 00:24:24 +01:00
driver=speechdDriver
#driver=espeakDriver
2017-03-02 20:20:15 +01:00
#driver=genericDriver
2016-09-17 01:04:49 +02:00
2017-02-20 12:38:32 +11:00
# The rate selects how fast Fenrir will speak. Options range from 0, slowest, to 1.0, fastest.
2016-12-17 12:49:54 +01:00
rate=0.65
2016-09-17 01:04:49 +02:00
# Pitch controls the pitch of the voice, select from 0, lowest, to 1.0, highest.
2016-08-28 19:40:14 +02:00
pitch=0.5
2016-10-01 15:22:34 +02:00
# Pitch for capital letters
capitalPitch=0.9
2016-09-17 01:04:49 +02:00
# Volume controls the loudness of the voice, select from 0, quietest, to 1.0, loudest.
volume=1.0
# Module is used for speech-dispatcher, to select the speech module you want to use.
2017-02-20 12:38:32 +11:00
# Consult speech-dispatcher's configuration and help Fenrir find out which modules are available.
2016-09-17 01:04:49 +02:00
# The default is espeak.
2016-08-28 19:40:14 +02:00
module=espeak
2016-09-17 01:04:49 +02:00
# Voice selects the varient you want to use, for example, f5 will use the female voice #5 in espeak,
2017-02-20 12:38:32 +11:00
# or if using the espeak module in speech-dispatcher. To find out which voices are available, consult the documentation provided with your selected synthesizer.
2017-05-07 14:46:28 -04:00
# This also sets the voice used in the generic driver.
2016-09-17 01:04:49 +02:00
voice=
2017-02-20 12:38:32 +11:00
# Select the language you want Fenrir to use.
2016-10-17 23:08:19 +02:00
language=english-us
2016-09-17 01:04:49 +02:00
# Read new text as it happens?
2016-10-02 16:48:34 +02:00
autoReadIncoming=True
2016-08-28 19:40:14 +02:00
2017-03-02 20:20:15 +01: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
2017-05-07 14:46:28 -04:00
# fenrirVoice = is the current voice that should be used. Set the voice variable above.
2017-03-02 20:20:15 +01:00
# 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"
# those 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=450
2016-08-28 19:40:14 +02:00
[braille]
2016-10-17 23:08:19 +02:00
enabled=False
2017-07-24 21:51:12 +02:00
driver=dummyDriver
2016-08-28 19:40:14 +02:00
layout=en
2017-01-30 15:59:45 +01:00
# to what should the flush timeout relate to
2017-01-30 20:30:49 +01: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 15:59:45 +01:00
flushMode=word
# seconds to flush or
# -1 = no automatic flush (manual via shortcut)
flushTimeout=3
2017-02-02 19:31:47 +01:00
# 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 19:58:40 +01:00
# define the cell on the Braille device where fenrir should scroll and keep the cursor
2017-01-30 19:55:48 +01:00
# 0 = first cell on device
# -1 = last cell on device
# >0 = fix cell number
2017-01-30 19:58:40 +01:00
fixCursorOnCell=-1
2017-02-02 19:06:53 +01: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 20:02:20 +01:00
# number of cells in panning (horizontal)
2017-02-02 19:06:53 +01:00
# 0 = display size, >0 number of cells
2017-02-02 20:02:20 +01:00
panSizeHorizontal=0
2016-08-28 19:40:14 +02:00
[screen]
2017-01-27 00:24:24 +01:00
driver=vcsaDriver
2017-07-18 00:58:54 +02:00
encoding=auto
2016-12-12 20:45:47 +01:00
screenUpdateDelay=0.05
2016-10-01 01:46:37 +02:00
suspendingScreen=
2017-07-16 22:28:30 +02:00
autodetectSuspendingScreen=True
2016-08-28 19:40:14 +02:00
[keyboard]
2017-01-27 00:24:24 +01:00
driver=evdevDriver
2016-11-01 21:55:08 +01:00
# filter input devices NOMICE, ALL or a DEVICE NAME
device=ALL
2017-02-20 12:38:32 +11:00
# gives Fenrir exclusive access to the keyboard and lets it control keystrokes.
2016-08-28 19:40:14 +02:00
grabDevices=True
ignoreShortcuts=False
2016-09-17 01:04:49 +02:00
# the current shortcut layout located in /etc/fenrir/keyboard
2016-10-17 23:08:19 +02:00
keyboardLayout=desktop
2016-09-17 01:04:49 +02:00
# echo chars while typing.
2016-10-02 16:48:34 +02:00
charEcho=False
2016-09-17 01:04:49 +02:00
# echo deleted chars
2016-08-28 19:40:14 +02:00
charDeleteEcho=True
2016-09-17 01:04:49 +02:00
# echo word after pressing space
2016-12-23 00:18:17 +01:00
wordEcho=False
2016-09-17 01:04:49 +02:00
# interrupt speech on any keypress
2016-08-28 19:40:14 +02:00
interruptOnKeyPress=False
2016-12-18 22:55:11 +01:00
# you can filter the keys on that the speech should interrupt (empty = all keys, otherwhise the given keys)
interruptOnKeyPressFilter=
2016-09-13 10:31:57 +02:00
# timeout for double tap in sec
2016-10-13 00:35:03 +02:00
doubleTapTimeout=0.2
2016-08-28 19:40:14 +02:00
[general]
2017-07-01 22:54:31 +02:00
debugLevel=0
2016-10-12 21:36:11 +02:00
punctuationProfile=default
2016-10-17 23:08:19 +02:00
punctuationLevel=some
2016-10-18 14:03:10 +02:00
respectPunctuationPause=True
2016-10-18 15:17:20 +02:00
newLinePause=True
2016-08-28 19:40:14 +02:00
numberOfClipboards=10
2017-06-03 23:24:37 +02:00
# used path for "export_clipboard_to_file"
# $user is replaced by username
#clipboardExportPath=/home/$user/fenrirClipboard
clipboardExportPath=/tmp/fenrirClipboard
2016-10-12 22:22:02 +02:00
emoticons=True
2016-09-17 01:04:49 +02:00
# define the current fenrir key
2016-12-03 02:20:12 +01:00
fenrirKeys=KEY_KP0,KEY_META,KEY_INSERT
2016-10-18 17:58:37 +02:00
scriptKey=KEY_COMPOSE
2016-08-28 19:40:14 +02:00
timeFormat=%H:%M:%P
2016-09-18 13:11:22 +02:00
dateFormat=%A, %B %d, %Y
2016-09-05 16:47:51 +02:00
autoSpellCheck=True
spellCheckLanguage=en_US
2017-02-23 15:21:15 +01:00
# path for your scripts "scriptKey" functionality
2016-11-04 21:31:42 +01:00
scriptPath=/usr/share/fenrir/scripts
2017-02-23 15:21:15 +01:00
# overload commands, and create new one without changing Fenrir default
2017-07-01 22:54:31 +02:00
commandPath=
2016-08-28 19:40:14 +02:00
2016-11-04 21:57:55 +01:00
[focus]
2016-11-05 01:21:28 +01:00
#follow the text cursor
2016-11-04 21:57:55 +01:00
cursor=True
2016-11-05 01:21:28 +01:00
#follow highlighted text changes
2016-11-04 21:57:55 +01:00
highlight=False
2017-02-02 19:06:53 +01:00
2016-12-07 23:54:30 +01:00
[review]
2016-12-08 00:51:08 +01:00
lineBreak=True
2016-12-07 23:54:30 +01:00
endOfScreen=True
2017-01-30 23:47:36 +01:00
# leave the review when pressing a key
2017-07-09 18:03:29 +02:00
leaveReviewOnCursorChange=True
2017-01-30 23:47:36 +01:00
# leave the review when changing the screen
leaveReviewOnScreenChange=True
2016-12-07 23:54:30 +01:00
2016-08-28 19:40:14 +02:00
[promote]
enabled=True
inactiveTimeoutSec=120
2016-09-17 01:04:49 +02:00
list=
2016-11-09 21:28:18 +01:00
[time]
# automatic time anouncement
2016-11-20 17:25:38 +01:00
enabled=False
2016-11-09 23:17:58 +01:00
# present time
presentTime=True
# present date (on change)
presentDate=True
2016-11-13 22:50:53 +01:00
# present time after a given period of 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
2016-11-20 17:16:41 +01:00
# announce via soundicon (not interrupting)
announce=True
# interrupt current speech for time announcement
interrupt=False