From 2203d2c9498eefaa43389bfe5c9ab60f3c57c966 Mon Sep 17 00:00:00 2001 From: Isaac Shoebottom Date: Thu, 3 Mar 2022 15:46:06 -0400 Subject: [PATCH] Add directory listing for custom themes --- VortexAnnoyanceReducer.ps1 | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/VortexAnnoyanceReducer.ps1 b/VortexAnnoyanceReducer.ps1 index f95173f..d685b4a 100644 --- a/VortexAnnoyanceReducer.ps1 +++ b/VortexAnnoyanceReducer.ps1 @@ -1,4 +1,4 @@ -# Remove annoyance script v1.2.0 +# Remove annoyance script v1.2.1 # For Vortex 1.5.4 / 1.5.5 / 1.5.6 # Compact Style String @@ -354,6 +354,14 @@ if (Test-Path -path $VortexThemeFolder) { if ($ThemeSelection -eq 4) { Write-Host "Enter your custom theme name exactly, it will only work if the wording is exact" Write-Host "If the theme does not exist you will be reprompted. If you do not have one installed close the window" + Write-Host "Here is a listing of all your current custom themes. Type it exactly, including capitalization." + Write-Host "" + Write-Host "Theme Folder:" + Write-Host $VortexThemeFolder + Write-Host "" + Write-Host "Theme Names:" + Get-ChildItem $VortexThemeFolder -Name + Write-Host "" $ThemeName = Read-Host -prompt "Please enter the name of the theme you want to modify)" $TempThemeFolder = $VortexThemeFolder + $ThemeName while (((Test-Path -path $TempThemeFolder) -eq $false) -or ($ThemeName -eq "") -or ($ThemeName -eq $null) -or ($ThemeName -Like "*.*")) {