2021-12-12 20:55:38 +01:00
|
|
|
|
<#
|
|
|
|
|
.SYNOPSIS
|
2021-12-13 10:03:37 +01:00
|
|
|
|
Changes to a plane wallpaper
|
2021-12-12 20:55:38 +01:00
|
|
|
|
.DESCRIPTION
|
2021-12-13 10:03:37 +01:00
|
|
|
|
This script downloads a random plane photo and sets it as desktop background.
|
2021-12-12 20:55:38 +01:00
|
|
|
|
.EXAMPLE
|
2021-12-13 10:03:37 +01:00
|
|
|
|
PS> ./change-to-plane-wallpaper
|
2021-12-12 20:55:38 +01:00
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz · License: CC0
|
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
#>
|
|
|
|
|
|
2021-12-13 10:03:37 +01:00
|
|
|
|
& "$PSScriptRoot/change-wallpaper.ps1" -Category "plane"
|
2021-12-12 20:55:38 +01:00
|
|
|
|
exit 0 # success
|