This commit is contained in:
Markus Fleschutz 2021-12-12 12:20:02 +01:00
parent adbc91e573
commit 0c9def2bee
3 changed files with 5 additions and 5 deletions

View File

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

View File

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

View File

@ -6,7 +6,7 @@
.PARAMETER Category
Specifies the photo category (beach, city, ...)
.EXAMPLE
PS> ./switch-wallpaper beach
PS> ./next-random-wallpaper
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK