Add 2 scripts

This commit is contained in:
Markus Fleschutz 2021-11-03 17:00:49 +01:00
parent e4aef680b8
commit 8ddf6f0e37
2 changed files with 30 additions and 0 deletions

15
Scripts/open-egg-timer.ps1 Executable file
View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens an egg timer
.DESCRIPTION
This script launches the Web browser with the eggtimer website.
.EXAMPLE
PS> ./open-egg-timer
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-browser.ps1" "https://e.ggtimer.com"
exit 0 # success

15
Scripts/open-jitsi-meet.ps1 Executable file
View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens the Jitsi Meet website
.DESCRIPTION
This script launches the Web browser with the Jitsi Meet website.
.EXAMPLE
PS> ./open-jitsi-meet
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-browser.ps1" "https://meet.jit.si/"
exit 0 # success