-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
clean up settings and begin override
- Loading branch information
Showing
4 changed files
with
55 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
from talon import Module, actions, Context | ||
|
||
soundContext = Context() | ||
|
||
class ActionClass: | ||
def key(key: str): | ||
"""Presses a key""" | ||
actions.beep() | ||
actions.next(key) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,37 @@ | ||
settings(): | ||
# echo the subtitles from talon back via tts | ||
# Echo the subtitles from talon back via tts | ||
user.echo_dictation = true | ||
|
||
# how fast to play back text-to-speech | ||
# if using the windows native tts. If | ||
# using the screenreader tts, this setting | ||
# is ignored and the screenreader's tts is used | ||
# How fast to play back text-to-speech | ||
# Ignored if using screenreader tts | ||
user.tts_speed = 6 | ||
|
||
# 1 through 100 (Not used if using screenreader tts) | ||
# How loud to play back text-to-speech from 0 to 100 | ||
# Ignored if using screenreader tts | ||
user.tts_volume = 80 | ||
|
||
# Automatically echo the context of the focused window when switching applications/tabs | ||
user.echo_context = false | ||
|
||
# instead of playing tts via talon, play it via the tts engine in your screenreader | ||
# If a screen reader is enabled, use it for tts instead of the TTS engine in Talon | ||
user.tts_via_screenreader = true | ||
|
||
# key used for nvda modifier, change to 'insert' if that is your nvda modifier | ||
# Key used for nvda modifier, change to 'insert' if that is your nvda modifier | ||
user.nvda_key = 'capslock' | ||
|
||
# Starts NVDA automatically with Talon | ||
user.start_screenreader_on_startup = false | ||
|
||
# setting from community repository | ||
# Manually typing keys through Talon can jumble the audio output since nvda can also say out | ||
# keys and/or words. By having this setting enabled, we can echo out the text but | ||
# not need to disable the screenreader's speech for characters and words for normal typing | ||
# user.paste_to_insert_threshold = -1 | ||
|
||
# Requires screen reader | ||
# Output dictated text to braille display through your screen reader | ||
user.braille_output = false | ||
|
||
### Relevant Community Settings Below ### | ||
# Change key_wait if you want the screen reader to speak words | ||
# at the same pace as if you were typing them manually. | ||
# key_wait = 0 | ||
|
||
# Setting from community repository | ||
# Manually typing keys through Talon can jumble the audio output since nvda can also say out | ||
# keys and/or words. By having this setting enabled, we can echo out the text but | ||
# not need to disable the screenreader's speech for characters and words for normal typing | ||
# user.paste_to_insert_threshold = -1 |