mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-02-02 19:09:13 +01:00
Add show-obs-studio-manual.ps1
This commit is contained in:
parent
668e48a678
commit
1896543ea5
@ -20,7 +20,7 @@ More supported voice commands are:
|
|||||||
|
|
||||||
`Computer, open` [app]
|
`Computer, open` [app]
|
||||||
----------------------
|
----------------------
|
||||||
* launches the given application - replace [app] by: `3D-Viewer`, `Calculator`, `Git Extensions`, `Microsoft Paint`, `Microsoft Store`, `Netflix`, `Notepad`, `Outlook`, `Paint 3D`, `Spotify`, `Thunderbird`, `Visual Studio`, or `Windows Terminal`.
|
* launches the given application - replace [app] by: `3D-Viewer`, `Calculator`, `Git Extensions`, `Microsoft Paint`, `Microsoft Store`, `Netflix`, `Notepad`, `OBS Studio`, `Outlook`, `Paint 3D`, `Spotify`, `Thunderbird`, `Visual Studio`, or `Windows Terminal`.
|
||||||
* when finished say: "Computer, close [app]" to close the application.
|
* when finished say: "Computer, close [app]" to close the application.
|
||||||
|
|
||||||
`Computer, check` [name]
|
`Computer, check` [name]
|
||||||
@ -82,7 +82,7 @@ More supported voice commands are:
|
|||||||
|
|
||||||
`Computer, show` [name] `manual`
|
`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`, `Voice` *(yes, this page!)*, or `Windows`.
|
* launches the default Web browser with the given manual - replace [name] by: `Azure`, `Bash`, `Blender`, `Chrome`, `Edge`, `Firefox`, `Git`, `OBS Studio`, `PowerShell`, `Serenade`, `Vim`, `Voice` *(yes, this page!)*, or `Windows`.
|
||||||
* when finished say: "Close tab" or: "Computer, close [name] browser" to close the Web browser.
|
* when finished say: "Close tab" or: "Computer, close [name] browser" to close the Web browser.
|
||||||
|
|
||||||
|
|
||||||
|
15
Scripts/show-obs-studio-manual.ps1
Executable file
15
Scripts/show-obs-studio-manual.ps1
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Shows the OBS Studio manual
|
||||||
|
.DESCRIPTION
|
||||||
|
This script launches the Web browser with the OBS Studio manual.
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./show-obs-studio-manual
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
#>
|
||||||
|
|
||||||
|
& "$PSScriptRoot/open-default-browser.ps1" "https://obsproject.com/wiki/"
|
||||||
|
exit 0 # success
|
Loading…
Reference in New Issue
Block a user