Simple rename

This commit is contained in:
Markus Fleschutz 2021-12-13 10:03:37 +01:00
parent 63595578bf
commit 50ea7be8f1
8 changed files with 29 additions and 29 deletions

View File

@ -89,9 +89,9 @@ Launches the default Web browser and plays the given game - replace [name] by: `
When finished say: *"Close tab"* or: *"Computer, close [name] browser"* to close the Web browser.
*"Computer, next [category] wallpaper."*
----------------------------------------
Sets a random photo from Unsplash as desktop background, just replace [category] by: `beach`, `car`, `city`, `nature`, `plane`,`random`, or `space`.
*"Computer, change to [category] wallpaper."*
---------------------------------------------
Sets a random photo from Unsplash as desktop background, just replace [category] by: `beach`, `car`, `city`, `nature`, `plane`, or `space`.
*"Computer, open [name] settings."*

View File

@ -1,15 +1,15 @@
<#
.SYNOPSIS
Switches to a beach wallpaper
Changes to a beach wallpaper
.DESCRIPTION
This script downloads a random beach photo and sets it as desktop wallpaper.
This script downloads a random beach photo and sets it as desktop background.
.EXAMPLE
PS> ./next-beach-wallpaper
PS> ./change-to-beach-wallpaper
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/next-random-wallpaper.ps1" -Category "beach"
& "$PSScriptRoot/change-wallpaper.ps1" -Category "beach"
exit 0 # success

View File

@ -1,15 +1,15 @@
<#
.SYNOPSIS
Switches to a car wallpaper
Changes to a car wallpaper
.DESCRIPTION
This script downloads a random car photo and sets it as desktop wallpaper.
This script downloads a random car photo and sets it as desktop background.
.EXAMPLE
PS> ./next-car-wallpaper
PS> ./change-to-car-wallpaper
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/next-random-wallpaper.ps1" -Category "car"
& "$PSScriptRoot/change-wallpaper.ps1" -Category "car"
exit 0 # success

View File

@ -1,15 +1,15 @@
<#
.SYNOPSIS
Switches to a city wallpaper
Changes to a city wallpaper
.DESCRIPTION
This script downloads a random city photo and sets it as desktop wallpaper.
This script downloads a random city photo and sets it as desktop background.
.EXAMPLE
PS> ./next-city-wallpaper
PS> ./change-to-city-wallpaper
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/next-random-wallpaper.ps1" -Category "city"
& "$PSScriptRoot/change-wallpaper.ps1" -Category "city"
exit 0 # success

View File

@ -1,15 +1,15 @@
<#
.SYNOPSIS
Switches to a nature wallpaper
Changes to a nature wallpaper
.DESCRIPTION
This script downloads a random nature photo and sets it as desktop wallpaper.
This script downloads a random nature photo and sets it as desktop background.
.EXAMPLE
PS> ./next-nature-wallpaper
PS> ./change-to-nature-wallpaper
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/next-random-wallpaper.ps1" -Category "nature"
& "$PSScriptRoot/change-wallpaper.ps1" -Category "nature"
exit 0 # success

View File

@ -1,15 +1,15 @@
<#
.SYNOPSIS
Switches to a plane wallpaper
Changes to a plane wallpaper
.DESCRIPTION
This script downloads a random plane photo and sets it as desktop wallpaper.
This script downloads a random plane photo and sets it as desktop background.
.EXAMPLE
PS> ./next-plane-wallpaper
PS> ./change-to-plane-wallpaper
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/next-random-wallpaper.ps1" -Category "plane"
& "$PSScriptRoot/change-wallpaper.ps1" -Category "plane"
exit 0 # success

View File

@ -1,15 +1,15 @@
<#
.SYNOPSIS
Switches to a space wallpaper
Changes to a space wallpaper
.DESCRIPTION
This script downloads a random space photo and sets it as desktop background.
.EXAMPLE
PS> ./next-space-wallpaper
PS> ./change-to-space-wallpaper
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/next-random-wallpaper.ps1" -Category "space"
& "$PSScriptRoot/change-wallpaper.ps1" -Category "space"
exit 0 # success

View File

@ -1,12 +1,12 @@
<#
.SYNOPSIS
Switches to a random wallpaper
Changes the wallpaper
.DESCRIPTION
This script downloads a random photo from Unsplash and sets it as desktop wallpaper.
This script downloads a random photo from Unsplash and sets it as desktop background.
.PARAMETER Category
Specifies the photo category (beach, city, ...)
.EXAMPLE
PS> ./next-random-wallpaper
PS> ./change-wallpaper
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK