mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-05 06:48:25 +02:00
Fix typo
This commit is contained in:
parent
adbc91e573
commit
0c9def2bee
@ -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
|
@ -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
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user