mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-12-16 11:40:53 +01:00
15 lines
353 B
PowerShell
15 lines
353 B
PowerShell
<#
|
|
.SYNOPSIS
|
|
Switches to a beach wallpaper
|
|
.DESCRIPTION
|
|
This script downloads a random beach photo and sets it as desktop wallpaper.
|
|
.EXAMPLE
|
|
PS> ./next-beach-wallpaper
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
& "$PSScriptRoot/next-random-wallpaper.ps1" -Category "beach"
|
|
exit 0 # success |