From 50ea7be8f12c5a3f0a6aa3b8365202f30e8e06e4 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Mon, 13 Dec 2021 10:03:37 +0100 Subject: [PATCH] Simple rename --- Docs/VoiceControl.md | 6 +++--- ...-beach-wallpaper.ps1 => change-to-beach-wallpaper.ps1} | 8 ++++---- ...next-car-wallpaper.ps1 => change-to-car-wallpaper.ps1} | 8 ++++---- ...xt-city-wallpaper.ps1 => change-to-city-wallpaper.ps1} | 8 ++++---- ...ature-wallpaper.ps1 => change-to-nature-wallpaper.ps1} | 8 ++++---- ...-plane-wallpaper.ps1 => change-to-plane-wallpaper.ps1} | 8 ++++---- ...-space-wallpaper.ps1 => change-to-space-wallpaper.ps1} | 6 +++--- .../{next-random-wallpaper.ps1 => change-wallpaper.ps1} | 6 +++--- 8 files changed, 29 insertions(+), 29 deletions(-) rename Scripts/{next-beach-wallpaper.ps1 => change-to-beach-wallpaper.ps1} (61%) rename Scripts/{next-car-wallpaper.ps1 => change-to-car-wallpaper.ps1} (63%) rename Scripts/{next-city-wallpaper.ps1 => change-to-city-wallpaper.ps1} (62%) rename Scripts/{next-nature-wallpaper.ps1 => change-to-nature-wallpaper.ps1} (61%) rename Scripts/{next-plane-wallpaper.ps1 => change-to-plane-wallpaper.ps1} (61%) rename Scripts/{next-space-wallpaper.ps1 => change-to-space-wallpaper.ps1} (65%) rename Scripts/{next-random-wallpaper.ps1 => change-wallpaper.ps1} (91%) diff --git a/Docs/VoiceControl.md b/Docs/VoiceControl.md index 93920932..56f912fc 100644 --- a/Docs/VoiceControl.md +++ b/Docs/VoiceControl.md @@ -89,9 +89,9 @@ Launches the default Web browser and plays the given game - replace [name] by: ` When finished say: *"Close tab"* or: *"Computer, close [name] browser"* to close the Web browser. -*"Computer, next [category] wallpaper."* ----------------------------------------- -Sets a random photo from Unsplash as desktop background, just replace [category] by: `beach`, `car`, `city`, `nature`, `plane`,`random`, or `space`. +*"Computer, change to [category] wallpaper."* +--------------------------------------------- +Sets a random photo from Unsplash as desktop background, just replace [category] by: `beach`, `car`, `city`, `nature`, `plane`, or `space`. *"Computer, open [name] settings."* diff --git a/Scripts/next-beach-wallpaper.ps1 b/Scripts/change-to-beach-wallpaper.ps1 similarity index 61% rename from Scripts/next-beach-wallpaper.ps1 rename to Scripts/change-to-beach-wallpaper.ps1 index c0606fa7..bcd941ae 100644 --- a/Scripts/next-beach-wallpaper.ps1 +++ b/Scripts/change-to-beach-wallpaper.ps1 @@ -1,15 +1,15 @@ <# .SYNOPSIS - Switches to a beach wallpaper + Changes to a beach wallpaper .DESCRIPTION - This script downloads a random beach photo and sets it as desktop wallpaper. + This script downloads a random beach photo and sets it as desktop background. .EXAMPLE - PS> ./next-beach-wallpaper + PS> ./change-to-beach-wallpaper .NOTES Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell #> -& "$PSScriptRoot/next-random-wallpaper.ps1" -Category "beach" +& "$PSScriptRoot/change-wallpaper.ps1" -Category "beach" exit 0 # success \ No newline at end of file diff --git a/Scripts/next-car-wallpaper.ps1 b/Scripts/change-to-car-wallpaper.ps1 similarity index 63% rename from Scripts/next-car-wallpaper.ps1 rename to Scripts/change-to-car-wallpaper.ps1 index 5bbc8179..22bec1a9 100644 --- a/Scripts/next-car-wallpaper.ps1 +++ b/Scripts/change-to-car-wallpaper.ps1 @@ -1,15 +1,15 @@ <# .SYNOPSIS - Switches to a car wallpaper + Changes to a car wallpaper .DESCRIPTION - This script downloads a random car photo and sets it as desktop wallpaper. + This script downloads a random car photo and sets it as desktop background. .EXAMPLE - PS> ./next-car-wallpaper + PS> ./change-to-car-wallpaper .NOTES Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell #> -& "$PSScriptRoot/next-random-wallpaper.ps1" -Category "car" +& "$PSScriptRoot/change-wallpaper.ps1" -Category "car" exit 0 # success \ No newline at end of file diff --git a/Scripts/next-city-wallpaper.ps1 b/Scripts/change-to-city-wallpaper.ps1 similarity index 62% rename from Scripts/next-city-wallpaper.ps1 rename to Scripts/change-to-city-wallpaper.ps1 index d6a9126a..bb0a6df4 100644 --- a/Scripts/next-city-wallpaper.ps1 +++ b/Scripts/change-to-city-wallpaper.ps1 @@ -1,15 +1,15 @@ <# .SYNOPSIS - Switches to a city wallpaper + Changes to a city wallpaper .DESCRIPTION - This script downloads a random city photo and sets it as desktop wallpaper. + This script downloads a random city photo and sets it as desktop background. .EXAMPLE - PS> ./next-city-wallpaper + PS> ./change-to-city-wallpaper .NOTES Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell #> -& "$PSScriptRoot/next-random-wallpaper.ps1" -Category "city" +& "$PSScriptRoot/change-wallpaper.ps1" -Category "city" exit 0 # success \ No newline at end of file diff --git a/Scripts/next-nature-wallpaper.ps1 b/Scripts/change-to-nature-wallpaper.ps1 similarity index 61% rename from Scripts/next-nature-wallpaper.ps1 rename to Scripts/change-to-nature-wallpaper.ps1 index a2baf397..867a75f3 100644 --- a/Scripts/next-nature-wallpaper.ps1 +++ b/Scripts/change-to-nature-wallpaper.ps1 @@ -1,15 +1,15 @@ <# .SYNOPSIS - Switches to a nature wallpaper + Changes to a nature wallpaper .DESCRIPTION - This script downloads a random nature photo and sets it as desktop wallpaper. + This script downloads a random nature photo and sets it as desktop background. .EXAMPLE - PS> ./next-nature-wallpaper + PS> ./change-to-nature-wallpaper .NOTES Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell #> -& "$PSScriptRoot/next-random-wallpaper.ps1" -Category "nature" +& "$PSScriptRoot/change-wallpaper.ps1" -Category "nature" exit 0 # success \ No newline at end of file diff --git a/Scripts/next-plane-wallpaper.ps1 b/Scripts/change-to-plane-wallpaper.ps1 similarity index 61% rename from Scripts/next-plane-wallpaper.ps1 rename to Scripts/change-to-plane-wallpaper.ps1 index 7a6df973..468f4445 100644 --- a/Scripts/next-plane-wallpaper.ps1 +++ b/Scripts/change-to-plane-wallpaper.ps1 @@ -1,15 +1,15 @@ <# .SYNOPSIS - Switches to a plane wallpaper + Changes to a plane wallpaper .DESCRIPTION - This script downloads a random plane photo and sets it as desktop wallpaper. + This script downloads a random plane photo and sets it as desktop background. .EXAMPLE - PS> ./next-plane-wallpaper + PS> ./change-to-plane-wallpaper .NOTES Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell #> -& "$PSScriptRoot/next-random-wallpaper.ps1" -Category "plane" +& "$PSScriptRoot/change-wallpaper.ps1" -Category "plane" exit 0 # success \ No newline at end of file diff --git a/Scripts/next-space-wallpaper.ps1 b/Scripts/change-to-space-wallpaper.ps1 similarity index 65% rename from Scripts/next-space-wallpaper.ps1 rename to Scripts/change-to-space-wallpaper.ps1 index c393d2cb..261936b4 100644 --- a/Scripts/next-space-wallpaper.ps1 +++ b/Scripts/change-to-space-wallpaper.ps1 @@ -1,15 +1,15 @@ <# .SYNOPSIS - Switches to a space wallpaper + Changes to a space wallpaper .DESCRIPTION This script downloads a random space photo and sets it as desktop background. .EXAMPLE - PS> ./next-space-wallpaper + PS> ./change-to-space-wallpaper .NOTES Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell #> -& "$PSScriptRoot/next-random-wallpaper.ps1" -Category "space" +& "$PSScriptRoot/change-wallpaper.ps1" -Category "space" exit 0 # success \ No newline at end of file diff --git a/Scripts/next-random-wallpaper.ps1 b/Scripts/change-wallpaper.ps1 similarity index 91% rename from Scripts/next-random-wallpaper.ps1 rename to Scripts/change-wallpaper.ps1 index f0886b33..e75e918b 100644 --- a/Scripts/next-random-wallpaper.ps1 +++ b/Scripts/change-wallpaper.ps1 @@ -1,12 +1,12 @@ <# .SYNOPSIS - Switches to a random wallpaper + Changes the wallpaper .DESCRIPTION - This script downloads a random photo from Unsplash and sets it as desktop wallpaper. + This script downloads a random photo from Unsplash and sets it as desktop background. .PARAMETER Category Specifies the photo category (beach, city, ...) .EXAMPLE - PS> ./next-random-wallpaper + PS> ./change-wallpaper .NOTES Author: Markus Fleschutz · License: CC0 .LINK