diff --git a/Docs/VoiceControl.md b/Docs/VoiceControl.md index 2b2d647e..d06ea738 100644 --- a/Docs/VoiceControl.md +++ b/Docs/VoiceControl.md @@ -134,4 +134,4 @@ When finished say: *"Close tab"* or: *"Computer, close [name] browser"* to close *"Computer, [farewell]."* ------------------------- -Say farewell to the computer, replace [farewell] by: `bye`, `bye-bye`, `good-bye`, `I'll be back`, `see you`. +Say farewell to the computer, replace [farewell] by: `bye`, `bye-bye`, `good-bye`, `I'll be back`, `see you`, or `see you later`. diff --git a/Scripts/see-you-later.ps1 b/Scripts/see-you-later.ps1 new file mode 100644 index 00000000..e7e5057d --- /dev/null +++ b/Scripts/see-you-later.ps1 @@ -0,0 +1,17 @@ +<# +.SYNOPSIS + Answers to 'see you later' +.DESCRIPTION + This script says a reply to "see you later" by text-to-speech (TTS). +.EXAMPLE + PS> ./see-you-later +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +$Reply = "Good bye.", "See you.", "Bye bye." | Get-Random + +& "$PSScriptRoot/give-reply.ps1" "$Reply" +exit 0 # success