diff --git a/Docs/VoiceControl.md b/Docs/VoiceControl.md index 0e2587cb..cf7e6b46 100644 --- a/Docs/VoiceControl.md +++ b/Docs/VoiceControl.md @@ -91,7 +91,7 @@ When finished say: *"Close tab"* or: *"Computer, close [name] browser"* to close *"Computer, next [category] wallpaper."* ---------------------------------------- -Sets a random photo from Unsplash as desktop background, just replace [category] by: `beach`, `car`, `city`, `plane`, or `random`. +Sets a random photo from Unsplash as desktop background, just replace [category] by: `beach`, `car`, `city`, `nature`, `plane`,`random`, or `space`. *"Computer, open [name] settings."* diff --git a/Scripts/next-nature-wallpaper.ps1 b/Scripts/next-nature-wallpaper.ps1 new file mode 100644 index 00000000..a2baf397 --- /dev/null +++ b/Scripts/next-nature-wallpaper.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Switches to a nature wallpaper +.DESCRIPTION + This script downloads a random nature photo and sets it as desktop wallpaper. +.EXAMPLE + PS> ./next-nature-wallpaper +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/next-random-wallpaper.ps1" -Category "nature" +exit 0 # success \ No newline at end of file diff --git a/Scripts/next-space-wallpaper.ps1 b/Scripts/next-space-wallpaper.ps1 new file mode 100644 index 00000000..c393d2cb --- /dev/null +++ b/Scripts/next-space-wallpaper.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Switches to a space wallpaper +.DESCRIPTION + This script downloads a random space photo and sets it as desktop background. +.EXAMPLE + PS> ./next-space-wallpaper +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/next-random-wallpaper.ps1" -Category "space" +exit 0 # success \ No newline at end of file