diff --git a/Docs/VoiceCommands.md b/Docs/VoiceCommands.md index 6bf426b4..7d1c4a5a 100644 --- a/Docs/VoiceCommands.md +++ b/Docs/VoiceCommands.md @@ -25,7 +25,7 @@ List of Supported Voice Commands [wake word], open NAME website ------------------------------ * this launches the default browser with the given website. -* replace NAME by: "Amazon", "Baidu", "BBC", "CDC", "CIA", "CNN", "eBay", "Facebook", "FBI", "Instagram", "Microsoft", "NASA", "NBC", "Pixabay", "Slashdot", "Tesla", "Twitter", "UFA", "Unsplash", "WhatsApp", "White House", "Wikipedia", "Wired", or "Yahoo". +* replace NAME by: "Amazon", "Baidu", "BBC", "CDC", "CIA", "CNN", "eBay", "Facebook", "FBI", "Instagram", "Microsoft", "NASA", "NBC", "Pixabay", "Slashdot", "Tesla", "Twitter", "UFA", "Unsplash", "Walmart", "WhatsApp", "White House", "Wikipedia", "Wired", or "Yahoo". [wake word], show NAME city diff --git a/Scripts/open-walmart-website.ps1 b/Scripts/open-walmart-website.ps1 new file mode 100644 index 00000000..6206c2da --- /dev/null +++ b/Scripts/open-walmart-website.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens the Walmart website +.DESCRIPTION + This script launches the Web browser with the Walmart website. +.EXAMPLE + PS> ./open-walmart-website +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.walmart.com/" +exit 0 # success