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