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