From 8af9ffacf1624e689c9afc0a4fbc6d79829238dd Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Mon, 29 Nov 2021 16:07:33 +0100 Subject: [PATCH] Add show-voice-manual.ps1 --- Docs/VoiceControl.md | 2 +- Scripts/show-voice-manual.ps1 | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100755 Scripts/show-voice-manual.ps1 diff --git a/Docs/VoiceControl.md b/Docs/VoiceControl.md index ad8badb8..5cbf0859 100644 --- a/Docs/VoiceControl.md +++ b/Docs/VoiceControl.md @@ -83,7 +83,7 @@ Computer, play `name` game Computer, show `name` manual ---------------------------- * launches the default Web browser with the given manual. -* replace `name` by: "Azure", "Bash", "Blender", "Chrome", "Edge", "Firefox", "Git", "PowerShell", "Serenade", "Vim", or "Windows". +* replace `name` by: "Azure", "Bash", "Blender", "Chrome", "Edge", "Firefox", "Git", "PowerShell", "Serenade", "Vim", **"Voice" (this page)**, or "Windows". * when finished say: *Close tab* or: "Computer, close `name` browser" to close the Web browser. diff --git a/Scripts/show-voice-manual.ps1 b/Scripts/show-voice-manual.ps1 new file mode 100755 index 00000000..c57b12ef --- /dev/null +++ b/Scripts/show-voice-manual.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Shows the voice control manual +.DESCRIPTION + This script launches the Web browser with the voice control manual. +.EXAMPLE + PS> ./show-voice-manual +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-default-browser.ps1" "https://github.com/fleschutz/PowerShell/blob/master/Docs/VoiceControl.md" +exit 0 # success