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 .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 wallpaper.
.EXAMPLE .EXAMPLE
PS> ./switch-to-beach-wallpaper PS> ./next-beach-wallpaper
.NOTES .NOTES
Author: Markus Fleschutz · License: CC0 Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
#> #>
& "$PSScriptRoot/switch-wallpaper.ps1" -Category "beach" & "$PSScriptRoot/next-random-wallpaper.ps1" -Category "beach"
exit 0 # success exit 0 # success

View File

@ -4,12 +4,12 @@
.DESCRIPTION .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 wallpaper.
.EXAMPLE .EXAMPLE
PS> ./switch-to-city-wallpaper PS> ./next-city-wallpaper
.NOTES .NOTES
Author: Markus Fleschutz · License: CC0 Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
#> #>
& "$PSScriptRoot/switch-wallpaper.ps1" -Category "city" & "$PSScriptRoot/next-random-wallpaper.ps1" -Category "city"
exit 0 # success exit 0 # success

View File

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