mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-06-30 20:50:02 +02:00
Add next-nature-wallpaper.ps1 and next-space-wallpaper.ps1
This commit is contained in:
15
Scripts/next-nature-wallpaper.ps1
Normal file
15
Scripts/next-nature-wallpaper.ps1
Normal file
@ -0,0 +1,15 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Switches to a nature wallpaper
|
||||
.DESCRIPTION
|
||||
This script downloads a random nature photo and sets it as desktop wallpaper.
|
||||
.EXAMPLE
|
||||
PS> ./next-nature-wallpaper
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/next-random-wallpaper.ps1" -Category "nature"
|
||||
exit 0 # success
|
15
Scripts/next-space-wallpaper.ps1
Normal file
15
Scripts/next-space-wallpaper.ps1
Normal file
@ -0,0 +1,15 @@
|
||||
<#
|
||||
.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
|
Reference in New Issue
Block a user