mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-01-18 20:08:45 +01:00
15 lines
353 B
PowerShell
15 lines
353 B
PowerShell
<#
|
|
.SYNOPSIS
|
|
Changes to a beach wallpaper
|
|
.DESCRIPTION
|
|
This script downloads a random beach photo and sets it as desktop background.
|
|
.EXAMPLE
|
|
PS> ./change-to-beach-wallpaper
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
& "$PSScriptRoot/change-wallpaper.ps1" -Category "beach"
|
|
exit 0 # success |