diff --git a/Scripts/open-egg-timer.ps1 b/Scripts/open-egg-timer.ps1 new file mode 100755 index 00000000..70ba437a --- /dev/null +++ b/Scripts/open-egg-timer.ps1 @@ -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 diff --git a/Scripts/open-jitsi-meet.ps1 b/Scripts/open-jitsi-meet.ps1 new file mode 100755 index 00000000..b9706333 --- /dev/null +++ b/Scripts/open-jitsi-meet.ps1 @@ -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