diff --git a/Docs/VoiceControl.md b/Docs/VoiceControl.md index 7efef2c0..8bd75e9a 100644 --- a/Docs/VoiceControl.md +++ b/Docs/VoiceControl.md @@ -46,17 +46,10 @@ Computer, open `name` folder * when finished use: *Computer, close file explorer* to stop the File Explorer. -Computer, open `name` settings -------------------------------- -* launches Windows settings. -* replace `name` by: "activation", "apps", "background", "backup", "bluetooth", "color", "date", "default apps", "developer", "display", "ethernet", "lockscreen", "maps", "printer", "proxy", "recovery", "speech", "start", "system", "taskbar", "themes", "time", "update", "usb", "vpn", or "wifi". Use "system" as top level settings. -* when finished use: *Computer, close system settings* to stop the Windows settings. - - Computer, open `name` website ----------------------------- * launches the default Web browser with the given website. -* replace `name` by: "Amazon", "Baidu", "BBC", "BitBucket", "CDC", "CIA", "CNN", "eBay", "Facebook", "FBI", "FourSquare", "GitHub", "HRworks", "Instagram", "Microsoft", "NASA", "NBC", "Pinterest", "Pixabay", "Slashdot", "Tesla", "TikTok", "Twitter", "UFA", "Unsplash", "Walmart", "WhatsApp", "White House", "Windy", "Wikipedia", "Wired", "Yahoo", or "YouTube". +* replace `name` by: "Amazon", "Baidu", "BBC", "BitBucket", "CDC", "CIA", "CNN", "eBay", "Facebook", "FBI", "FourSquare", "GitHub", "HRworks", "Instagram", "Microsoft", "NASA", "NBC", "Notepad", "Pinterest", "Pixabay", "Slashdot", "Tesla", "TikTok", "Twitter", "UFA", "Unsplash", "Walmart", "WhatsApp", "White House", "Windy", "Wikipedia", "Wired", "Yahoo", or "YouTube". * when finished see "Computer, close `name` browser" to stop the Web browser. @@ -80,6 +73,12 @@ Computer, play `name` sound * replace `name`: by "bee", "beep", "cat", "cow", "dog", "donkey", "elephant", "elk", "frog", "goat", "gorilla", "horse", "lion", "parrot", "pig", "rattlesnake", "vulture", or "wolf". +Computer, open `name` settings +------------------------------- +* launches Windows settings. +* replace `name` by: "activation", "apps", "background", "backup", "bluetooth", "color", "date", "default apps", "developer", "display", "ethernet", "lockscreen", "maps", "printer", "proxy", "recovery", "speech", "start", "system", "taskbar", "themes", "time", "update", "usb", "vpn", or "wifi". Use "system" as top level settings. +* when finished use: *Computer, close system settings* to stop the Windows settings. + Audio ----- * *Computer, mute audio.* diff --git a/Scripts/open-notepad-website.ps1 b/Scripts/open-notepad-website.ps1 new file mode 100644 index 00000000..383d5db6 --- /dev/null +++ b/Scripts/open-notepad-website.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens a Notepad website +.DESCRIPTION + This script launches the Web browser with a Notepad website. +.EXAMPLE + PS> ./open-notepad-website +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-default-browser.ps1" "https://notepad.js.org/" +exit 0 # success