mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-12-17 04:00:46 +01:00
15 lines
357 B
PowerShell
15 lines
357 B
PowerShell
<#
|
|
.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 |