diff --git a/Docs/VoiceControl.md b/Docs/VoiceControl.md index 845a64e1..788d278c 100644 --- a/Docs/VoiceControl.md +++ b/Docs/VoiceControl.md @@ -32,7 +32,7 @@ When finished say: *"Computer, close [app]"* to close the application. *"Computer, check [item]."* -------------------------- -Lets the computer check something, replace [item] by: `Bitcoin rate`, `Christmas`, `CPU`, `date`, `dawn`, `DNS`, `drives`, `dusk`, `Easter Sunday`, `Earth` (fun), `Ether rate`, `headlines`, `Independence Day`, `ISS position`, `midnight`, `moon phase`, `New Year`, `noon`, `operating system`, `ping`, `Santa`, `sunrise`, `sunset`, `swap space`, `tea time`, `Tether rate`, `time`, `time zone`, `up-time`, `VPN`, `weather`, or `zenith`. +Lets the computer check something, replace [item] by: `Bitcoin rate`, `Christmas`, `CPU`, `date`, `dawn`, `DNS`, `drives`, `dusk`, `Easter Sunday`, `Earth` (fun), `Ether rate`, `headlines`, `Independence Day`, `ISS position`, `midnight`, `moon phase`, `New Year`, `noon`, `operating system`, `ping`, `Santa`, `sunrise`, `sunset`, `swap space`, `tea time`, `Tether rate`, `time`, `time zone`, `up-time`, `VPN`, `weather`, `week`, `year`, or `zenith`. *"Computer, open [letter] drive."* diff --git a/Scripts/check-week.ps1 b/Scripts/check-week.ps1 new file mode 100644 index 00000000..53415782 --- /dev/null +++ b/Scripts/check-week.ps1 @@ -0,0 +1,22 @@ +<# +.SYNOPSIS + Determines the week number +.DESCRIPTION + This script determines and speaks the current week number by text-to-speech (TTS). +.EXAMPLE + PS> ./check-week + ✔️ It's week #4. +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +try { + $WeekNo = (get-date -UFormat %V) + & "$PSScriptRoot/give-reply.ps1" "It's week #$WeekNo." + exit 0 # success +} catch { + "⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))" + exit 1 +} diff --git a/Scripts/check-year.ps1 b/Scripts/check-year.ps1 new file mode 100644 index 00000000..6c8c01a7 --- /dev/null +++ b/Scripts/check-year.ps1 @@ -0,0 +1,22 @@ +<# +.SYNOPSIS + Determines the current year +.DESCRIPTION + This script determines and speaks the current year by text-to-speech (TTS). +.EXAMPLE + PS> ./check-year + ✔️ It's 2021. +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +try { + $Year = (Get-Date).Year + & "$PSScriptRoot/give-reply.ps1" "It's $Year." + exit 0 # success +} catch { + "⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))" + exit 1 +} diff --git a/Scripts/export-to-serenade.ps1 b/Scripts/export-to-serenade.ps1 index b2f2c504..97ce7a45 100755 --- a/Scripts/export-to-serenade.ps1 +++ b/Scripts/export-to-serenade.ps1 @@ -37,7 +37,7 @@ try { foreach ($Script in $Scripts) { $ScriptName = $Script.basename $Keyword = $ScriptName -replace "-"," " - "serenade.global().command(`"$($WakeWord.toLower()) $Keyword`",async(api)=>{await api.focusApplication(`"$Application`");await api.typeText(`"$ScriptName.ps1`");await api.pressKey(`"return`");});" | Add-Content "$TargetFile" + "serenade.global().command(`"$($WakeWord.toLower()) $Keyword`",async(api)=>{await api.focusApplication(`"$Application`");await api.pressKey(`"return`");await api.typeText(`"$ScriptName.ps1`");await api.pressKey(`"return`");});" | Add-Content "$TargetFile" } [int]$Elapsed = $StopWatch.Elapsed.TotalSeconds diff --git a/Scripts/good-night.ps1 b/Scripts/good-night.ps1 index 479f5752..bc7ddc42 100644 --- a/Scripts/good-night.ps1 +++ b/Scripts/good-night.ps1 @@ -11,7 +11,7 @@ https://github.com/fleschutz/PowerShell #> -$Reply = "Good night to you, too.", "Good night to you, my friend.", "Have a good night. Sleep well.", "Good night and sweet dreams." | Get-Random +$Reply = "Good night to you too.", "Good night to you my friend.", "Have a good night. Sleep well.", "Good night and sweet dreams." | Get-Random & "$PSScriptRoot/give-reply.ps1" "$Reply" exit 0 # success