mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-01-22 21:58:42 +01:00
Add 2 scripts
This commit is contained in:
parent
e4aef680b8
commit
8ddf6f0e37
15
Scripts/open-egg-timer.ps1
Executable file
15
Scripts/open-egg-timer.ps1
Executable 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
15
Scripts/open-jitsi-meet.ps1
Executable 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
|
Loading…
Reference in New Issue
Block a user