From 1054a0efeb86c9218417ae8647399594ae35408a Mon Sep 17 00:00:00 2001 From: Andreas Arvidsson Date: Sat, 21 Dec 2024 17:56:00 +0100 Subject: [PATCH 1/5] Added example for toggling microphone --- docs/Customization/Examples/toggle_listening.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 docs/Customization/Examples/toggle_listening.md diff --git a/docs/Customization/Examples/toggle_listening.md b/docs/Customization/Examples/toggle_listening.md new file mode 100644 index 00000000..7907c3d1 --- /dev/null +++ b/docs/Customization/Examples/toggle_listening.md @@ -0,0 +1,9 @@ +If you want to completely prevent Talon from listening so not even the wake up commands are active you can do that by setting the microphone. + +```talon +key(f9): + sound.set_microphone("None") + +key(f10): + sound.set_microphone("System Default") +``` From 70a710113e57518e9a597496c7287aa797ccd481 Mon Sep 17 00:00:00 2001 From: Andreas Arvidsson Date: Sat, 21 Dec 2024 17:57:22 +0100 Subject: [PATCH 2/5] Update toggle_listening.md --- docs/Customization/Examples/toggle_listening.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/Customization/Examples/toggle_listening.md b/docs/Customization/Examples/toggle_listening.md index 7907c3d1..2a21285a 100644 --- a/docs/Customization/Examples/toggle_listening.md +++ b/docs/Customization/Examples/toggle_listening.md @@ -1,3 +1,5 @@ +# Toggle listening + If you want to completely prevent Talon from listening so not even the wake up commands are active you can do that by setting the microphone. ```talon From 6e56ce6d8ebe802981d3692e2084f01d3bc8364c Mon Sep 17 00:00:00 2001 From: Andreas Arvidsson Date: Sat, 21 Dec 2024 18:14:07 +0100 Subject: [PATCH 3/5] Update docs/Customization/Examples/toggle_listening.md Co-authored-by: Phil Cohen --- docs/Customization/Examples/toggle_listening.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Customization/Examples/toggle_listening.md b/docs/Customization/Examples/toggle_listening.md index 2a21285a..33cba8af 100644 --- a/docs/Customization/Examples/toggle_listening.md +++ b/docs/Customization/Examples/toggle_listening.md @@ -1,6 +1,6 @@ # Toggle listening -If you want to completely prevent Talon from listening so not even the wake up commands are active you can do that by setting the microphone. +If you want to completely prevent Talon from listening, so not even the wake up commands are active, you can do that by changing the microphone to `"None"`: ```talon key(f9): From afb5dad015b728d01afdf79608784811b96b025e Mon Sep 17 00:00:00 2001 From: Andreas Arvidsson Date: Sat, 21 Dec 2024 18:14:18 +0100 Subject: [PATCH 4/5] Update toggle_listening.md --- docs/Customization/Examples/toggle_listening.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/Customization/Examples/toggle_listening.md b/docs/Customization/Examples/toggle_listening.md index 33cba8af..e9911774 100644 --- a/docs/Customization/Examples/toggle_listening.md +++ b/docs/Customization/Examples/toggle_listening.md @@ -2,6 +2,8 @@ If you want to completely prevent Talon from listening, so not even the wake up commands are active, you can do that by changing the microphone to `"None"`: +To list available microphone names. Either used the voice command `"microphone show"` or click `Microphone` in the Talon menu. + ```talon key(f9): sound.set_microphone("None") From 341f5ed5e93226f2ff9146411e0540599605fc2c Mon Sep 17 00:00:00 2001 From: Andreas Arvidsson Date: Sat, 21 Dec 2024 18:26:01 +0100 Subject: [PATCH 5/5] Update docs/Customization/Examples/toggle_listening.md Co-authored-by: Phil Cohen --- docs/Customization/Examples/toggle_listening.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Customization/Examples/toggle_listening.md b/docs/Customization/Examples/toggle_listening.md index e9911774..6d1a207b 100644 --- a/docs/Customization/Examples/toggle_listening.md +++ b/docs/Customization/Examples/toggle_listening.md @@ -2,7 +2,7 @@ If you want to completely prevent Talon from listening, so not even the wake up commands are active, you can do that by changing the microphone to `"None"`: -To list available microphone names. Either used the voice command `"microphone show"` or click `Microphone` in the Talon menu. +You can see available microphone names in the "Microphone" submenu in the Talon menu; or issue the voice command `"microphone show"`. ```talon key(f9):