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