From c2a6dcdaa16141f5f2a5e55cdadfc63decfa4829 Mon Sep 17 00:00:00 2001 From: Darkkal44 Date: Sat, 22 Apr 2023 23:31:54 +0530 Subject: [PATCH] Removing unwanted files --- .../spicetify/Themes/Dribbblish/install.ps1 | 59 ------------------- .../spicetify/Themes/Dribbblish/uninstall.ps1 | 15 ----- .../spicetify/Themes/Dribbblish/install.ps1 | 59 ------------------- .../spicetify/Themes/Dribbblish/uninstall.ps1 | 15 ----- .../spicetify/Themes/Dribbblish/install.ps1 | 59 ------------------- .../spicetify/Themes/Dribbblish/uninstall.ps1 | 15 ----- .../spicetify/Themes/Dribbblish/install.ps1 | 59 ------------------- .../spicetify/Themes/Dribbblish/uninstall.ps1 | 15 ----- .../spicetify/Themes/Dribbblish/install.ps1 | 59 ------------------- .../spicetify/Themes/Dribbblish/uninstall.ps1 | 15 ----- 10 files changed, 370 deletions(-) delete mode 100644 .config/spicetify/Themes/Dribbblish/install.ps1 delete mode 100644 .config/spicetify/Themes/Dribbblish/uninstall.ps1 delete mode 100644 Themes/Cozy/.config/spicetify/Themes/Dribbblish/install.ps1 delete mode 100644 Themes/Cozy/.config/spicetify/Themes/Dribbblish/uninstall.ps1 delete mode 100644 Themes/Everforest/.config/spicetify/Themes/Dribbblish/install.ps1 delete mode 100644 Themes/Everforest/.config/spicetify/Themes/Dribbblish/uninstall.ps1 delete mode 100644 Themes/Natura/.config/spicetify/Themes/Dribbblish/install.ps1 delete mode 100644 Themes/Natura/.config/spicetify/Themes/Dribbblish/uninstall.ps1 delete mode 100644 Themes/Sakura/.config/spicetify/Themes/Dribbblish/install.ps1 delete mode 100644 Themes/Sakura/.config/spicetify/Themes/Dribbblish/uninstall.ps1 diff --git a/.config/spicetify/Themes/Dribbblish/install.ps1 b/.config/spicetify/Themes/Dribbblish/install.ps1 deleted file mode 100644 index 604ddd3..0000000 --- a/.config/spicetify/Themes/Dribbblish/install.ps1 +++ /dev/null @@ -1,59 +0,0 @@ -$checkSpice = Get-Command spicetify -ErrorAction Silent -if ($null -eq $checkSpice) { - Write-Host -ForegroundColor Red "Spicetify not found" - Write-Host "Follow instruction on:", "https://spicetify.app/docs/getting-started/simple-installation#windows" - return -} - -Write-Host "Downloading themes package:" -ForegroundColor Green -$zipFile = "$env:TEMP\spicetify-themes.zip" -Invoke-WebRequest "https://github.com/spicetify/spicetify-themes/archive/refs/heads/master.zip" -OutFile $zipFile - -Write-Host "Extracting themes package:" -ForegroundColor Green -$extractPath = "$env:TEMP\spicetify-themes-master" -if (Test-Path $extractPath) { - Remove-Item $extractPath -Recurse -Force -} -Expand-Archive $zipFile -DestinationPath $env:TEMP - -# Copy to personal Themes folder -$spicePath = spicetify -c | Split-Path -$dribPath = "$extractPath\Dribbblish" - -$destPath = "$spicePath\Themes\Dribbblish" -if (Test-Path $destPath) { - Remove-Item $destPath -Recurse -Force -} -Copy-Item $dribPath $destPath -Recurse - -# Copy extension file -New-Item -ItemType Directory -Force "$spicePath\Extensions" -Copy-Item "$destPath\dribbblish.js" "$spicePath\Extensions" - -Write-Host "Configuring:" -ForegroundColor Green -spicetify -spicetify config inject_css 1 replace_colors 1 overwrite_assets 1 current_theme Dribbblish extensions dribbblish.js - -# Add patch -$configFile = Get-Content "$spicePath\config-xpui.ini" -if (-not ($configFile -match "xpui.js_find_8008")) { - $rep = @" -[Patch] -xpui.js_find_8008=,(\w+=)32, -xpui.js_repl_8008=,`${1}56, -"@ - # In case missing Patch section - if (-not ($configFile -match "\[Patch\]")) { - $configFile += "`n[Patch]`n" - } - $configFile = $configFile -replace "\[Patch\]",$rep - Set-Content "$spicePath\config-xpui.ini" $configFile -} - -$backupVer = $configFile -match "^version" -$version = ConvertFrom-StringData $backupVer[0] -if ($version.version.Length -gt 0) { - spicetify apply -} else { - spicetify backup apply -} diff --git a/.config/spicetify/Themes/Dribbblish/uninstall.ps1 b/.config/spicetify/Themes/Dribbblish/uninstall.ps1 deleted file mode 100644 index ccf5757..0000000 --- a/.config/spicetify/Themes/Dribbblish/uninstall.ps1 +++ /dev/null @@ -1,15 +0,0 @@ -spicetify config current_theme " " extensions dribbblish.js- - -$configPath = spicetify -c -$configFile = Get-Content $configPath -$find = $configFile -match "xpui.js_find_8008" -if ($find) { - $configFile = $configFile -replace [regex]::escape($find),"" -} -$repl = $configFile -match "xpui.js_repl_8008" -if ($repl) { - $configFile = $configFile -replace [regex]::escape($repl),"" -} -Set-Content $configPath $configFile - -spicetify apply diff --git a/Themes/Cozy/.config/spicetify/Themes/Dribbblish/install.ps1 b/Themes/Cozy/.config/spicetify/Themes/Dribbblish/install.ps1 deleted file mode 100644 index 604ddd3..0000000 --- a/Themes/Cozy/.config/spicetify/Themes/Dribbblish/install.ps1 +++ /dev/null @@ -1,59 +0,0 @@ -$checkSpice = Get-Command spicetify -ErrorAction Silent -if ($null -eq $checkSpice) { - Write-Host -ForegroundColor Red "Spicetify not found" - Write-Host "Follow instruction on:", "https://spicetify.app/docs/getting-started/simple-installation#windows" - return -} - -Write-Host "Downloading themes package:" -ForegroundColor Green -$zipFile = "$env:TEMP\spicetify-themes.zip" -Invoke-WebRequest "https://github.com/spicetify/spicetify-themes/archive/refs/heads/master.zip" -OutFile $zipFile - -Write-Host "Extracting themes package:" -ForegroundColor Green -$extractPath = "$env:TEMP\spicetify-themes-master" -if (Test-Path $extractPath) { - Remove-Item $extractPath -Recurse -Force -} -Expand-Archive $zipFile -DestinationPath $env:TEMP - -# Copy to personal Themes folder -$spicePath = spicetify -c | Split-Path -$dribPath = "$extractPath\Dribbblish" - -$destPath = "$spicePath\Themes\Dribbblish" -if (Test-Path $destPath) { - Remove-Item $destPath -Recurse -Force -} -Copy-Item $dribPath $destPath -Recurse - -# Copy extension file -New-Item -ItemType Directory -Force "$spicePath\Extensions" -Copy-Item "$destPath\dribbblish.js" "$spicePath\Extensions" - -Write-Host "Configuring:" -ForegroundColor Green -spicetify -spicetify config inject_css 1 replace_colors 1 overwrite_assets 1 current_theme Dribbblish extensions dribbblish.js - -# Add patch -$configFile = Get-Content "$spicePath\config-xpui.ini" -if (-not ($configFile -match "xpui.js_find_8008")) { - $rep = @" -[Patch] -xpui.js_find_8008=,(\w+=)32, -xpui.js_repl_8008=,`${1}56, -"@ - # In case missing Patch section - if (-not ($configFile -match "\[Patch\]")) { - $configFile += "`n[Patch]`n" - } - $configFile = $configFile -replace "\[Patch\]",$rep - Set-Content "$spicePath\config-xpui.ini" $configFile -} - -$backupVer = $configFile -match "^version" -$version = ConvertFrom-StringData $backupVer[0] -if ($version.version.Length -gt 0) { - spicetify apply -} else { - spicetify backup apply -} diff --git a/Themes/Cozy/.config/spicetify/Themes/Dribbblish/uninstall.ps1 b/Themes/Cozy/.config/spicetify/Themes/Dribbblish/uninstall.ps1 deleted file mode 100644 index ccf5757..0000000 --- a/Themes/Cozy/.config/spicetify/Themes/Dribbblish/uninstall.ps1 +++ /dev/null @@ -1,15 +0,0 @@ -spicetify config current_theme " " extensions dribbblish.js- - -$configPath = spicetify -c -$configFile = Get-Content $configPath -$find = $configFile -match "xpui.js_find_8008" -if ($find) { - $configFile = $configFile -replace [regex]::escape($find),"" -} -$repl = $configFile -match "xpui.js_repl_8008" -if ($repl) { - $configFile = $configFile -replace [regex]::escape($repl),"" -} -Set-Content $configPath $configFile - -spicetify apply diff --git a/Themes/Everforest/.config/spicetify/Themes/Dribbblish/install.ps1 b/Themes/Everforest/.config/spicetify/Themes/Dribbblish/install.ps1 deleted file mode 100644 index 604ddd3..0000000 --- a/Themes/Everforest/.config/spicetify/Themes/Dribbblish/install.ps1 +++ /dev/null @@ -1,59 +0,0 @@ -$checkSpice = Get-Command spicetify -ErrorAction Silent -if ($null -eq $checkSpice) { - Write-Host -ForegroundColor Red "Spicetify not found" - Write-Host "Follow instruction on:", "https://spicetify.app/docs/getting-started/simple-installation#windows" - return -} - -Write-Host "Downloading themes package:" -ForegroundColor Green -$zipFile = "$env:TEMP\spicetify-themes.zip" -Invoke-WebRequest "https://github.com/spicetify/spicetify-themes/archive/refs/heads/master.zip" -OutFile $zipFile - -Write-Host "Extracting themes package:" -ForegroundColor Green -$extractPath = "$env:TEMP\spicetify-themes-master" -if (Test-Path $extractPath) { - Remove-Item $extractPath -Recurse -Force -} -Expand-Archive $zipFile -DestinationPath $env:TEMP - -# Copy to personal Themes folder -$spicePath = spicetify -c | Split-Path -$dribPath = "$extractPath\Dribbblish" - -$destPath = "$spicePath\Themes\Dribbblish" -if (Test-Path $destPath) { - Remove-Item $destPath -Recurse -Force -} -Copy-Item $dribPath $destPath -Recurse - -# Copy extension file -New-Item -ItemType Directory -Force "$spicePath\Extensions" -Copy-Item "$destPath\dribbblish.js" "$spicePath\Extensions" - -Write-Host "Configuring:" -ForegroundColor Green -spicetify -spicetify config inject_css 1 replace_colors 1 overwrite_assets 1 current_theme Dribbblish extensions dribbblish.js - -# Add patch -$configFile = Get-Content "$spicePath\config-xpui.ini" -if (-not ($configFile -match "xpui.js_find_8008")) { - $rep = @" -[Patch] -xpui.js_find_8008=,(\w+=)32, -xpui.js_repl_8008=,`${1}56, -"@ - # In case missing Patch section - if (-not ($configFile -match "\[Patch\]")) { - $configFile += "`n[Patch]`n" - } - $configFile = $configFile -replace "\[Patch\]",$rep - Set-Content "$spicePath\config-xpui.ini" $configFile -} - -$backupVer = $configFile -match "^version" -$version = ConvertFrom-StringData $backupVer[0] -if ($version.version.Length -gt 0) { - spicetify apply -} else { - spicetify backup apply -} diff --git a/Themes/Everforest/.config/spicetify/Themes/Dribbblish/uninstall.ps1 b/Themes/Everforest/.config/spicetify/Themes/Dribbblish/uninstall.ps1 deleted file mode 100644 index ccf5757..0000000 --- a/Themes/Everforest/.config/spicetify/Themes/Dribbblish/uninstall.ps1 +++ /dev/null @@ -1,15 +0,0 @@ -spicetify config current_theme " " extensions dribbblish.js- - -$configPath = spicetify -c -$configFile = Get-Content $configPath -$find = $configFile -match "xpui.js_find_8008" -if ($find) { - $configFile = $configFile -replace [regex]::escape($find),"" -} -$repl = $configFile -match "xpui.js_repl_8008" -if ($repl) { - $configFile = $configFile -replace [regex]::escape($repl),"" -} -Set-Content $configPath $configFile - -spicetify apply diff --git a/Themes/Natura/.config/spicetify/Themes/Dribbblish/install.ps1 b/Themes/Natura/.config/spicetify/Themes/Dribbblish/install.ps1 deleted file mode 100644 index 604ddd3..0000000 --- a/Themes/Natura/.config/spicetify/Themes/Dribbblish/install.ps1 +++ /dev/null @@ -1,59 +0,0 @@ -$checkSpice = Get-Command spicetify -ErrorAction Silent -if ($null -eq $checkSpice) { - Write-Host -ForegroundColor Red "Spicetify not found" - Write-Host "Follow instruction on:", "https://spicetify.app/docs/getting-started/simple-installation#windows" - return -} - -Write-Host "Downloading themes package:" -ForegroundColor Green -$zipFile = "$env:TEMP\spicetify-themes.zip" -Invoke-WebRequest "https://github.com/spicetify/spicetify-themes/archive/refs/heads/master.zip" -OutFile $zipFile - -Write-Host "Extracting themes package:" -ForegroundColor Green -$extractPath = "$env:TEMP\spicetify-themes-master" -if (Test-Path $extractPath) { - Remove-Item $extractPath -Recurse -Force -} -Expand-Archive $zipFile -DestinationPath $env:TEMP - -# Copy to personal Themes folder -$spicePath = spicetify -c | Split-Path -$dribPath = "$extractPath\Dribbblish" - -$destPath = "$spicePath\Themes\Dribbblish" -if (Test-Path $destPath) { - Remove-Item $destPath -Recurse -Force -} -Copy-Item $dribPath $destPath -Recurse - -# Copy extension file -New-Item -ItemType Directory -Force "$spicePath\Extensions" -Copy-Item "$destPath\dribbblish.js" "$spicePath\Extensions" - -Write-Host "Configuring:" -ForegroundColor Green -spicetify -spicetify config inject_css 1 replace_colors 1 overwrite_assets 1 current_theme Dribbblish extensions dribbblish.js - -# Add patch -$configFile = Get-Content "$spicePath\config-xpui.ini" -if (-not ($configFile -match "xpui.js_find_8008")) { - $rep = @" -[Patch] -xpui.js_find_8008=,(\w+=)32, -xpui.js_repl_8008=,`${1}56, -"@ - # In case missing Patch section - if (-not ($configFile -match "\[Patch\]")) { - $configFile += "`n[Patch]`n" - } - $configFile = $configFile -replace "\[Patch\]",$rep - Set-Content "$spicePath\config-xpui.ini" $configFile -} - -$backupVer = $configFile -match "^version" -$version = ConvertFrom-StringData $backupVer[0] -if ($version.version.Length -gt 0) { - spicetify apply -} else { - spicetify backup apply -} diff --git a/Themes/Natura/.config/spicetify/Themes/Dribbblish/uninstall.ps1 b/Themes/Natura/.config/spicetify/Themes/Dribbblish/uninstall.ps1 deleted file mode 100644 index ccf5757..0000000 --- a/Themes/Natura/.config/spicetify/Themes/Dribbblish/uninstall.ps1 +++ /dev/null @@ -1,15 +0,0 @@ -spicetify config current_theme " " extensions dribbblish.js- - -$configPath = spicetify -c -$configFile = Get-Content $configPath -$find = $configFile -match "xpui.js_find_8008" -if ($find) { - $configFile = $configFile -replace [regex]::escape($find),"" -} -$repl = $configFile -match "xpui.js_repl_8008" -if ($repl) { - $configFile = $configFile -replace [regex]::escape($repl),"" -} -Set-Content $configPath $configFile - -spicetify apply diff --git a/Themes/Sakura/.config/spicetify/Themes/Dribbblish/install.ps1 b/Themes/Sakura/.config/spicetify/Themes/Dribbblish/install.ps1 deleted file mode 100644 index 604ddd3..0000000 --- a/Themes/Sakura/.config/spicetify/Themes/Dribbblish/install.ps1 +++ /dev/null @@ -1,59 +0,0 @@ -$checkSpice = Get-Command spicetify -ErrorAction Silent -if ($null -eq $checkSpice) { - Write-Host -ForegroundColor Red "Spicetify not found" - Write-Host "Follow instruction on:", "https://spicetify.app/docs/getting-started/simple-installation#windows" - return -} - -Write-Host "Downloading themes package:" -ForegroundColor Green -$zipFile = "$env:TEMP\spicetify-themes.zip" -Invoke-WebRequest "https://github.com/spicetify/spicetify-themes/archive/refs/heads/master.zip" -OutFile $zipFile - -Write-Host "Extracting themes package:" -ForegroundColor Green -$extractPath = "$env:TEMP\spicetify-themes-master" -if (Test-Path $extractPath) { - Remove-Item $extractPath -Recurse -Force -} -Expand-Archive $zipFile -DestinationPath $env:TEMP - -# Copy to personal Themes folder -$spicePath = spicetify -c | Split-Path -$dribPath = "$extractPath\Dribbblish" - -$destPath = "$spicePath\Themes\Dribbblish" -if (Test-Path $destPath) { - Remove-Item $destPath -Recurse -Force -} -Copy-Item $dribPath $destPath -Recurse - -# Copy extension file -New-Item -ItemType Directory -Force "$spicePath\Extensions" -Copy-Item "$destPath\dribbblish.js" "$spicePath\Extensions" - -Write-Host "Configuring:" -ForegroundColor Green -spicetify -spicetify config inject_css 1 replace_colors 1 overwrite_assets 1 current_theme Dribbblish extensions dribbblish.js - -# Add patch -$configFile = Get-Content "$spicePath\config-xpui.ini" -if (-not ($configFile -match "xpui.js_find_8008")) { - $rep = @" -[Patch] -xpui.js_find_8008=,(\w+=)32, -xpui.js_repl_8008=,`${1}56, -"@ - # In case missing Patch section - if (-not ($configFile -match "\[Patch\]")) { - $configFile += "`n[Patch]`n" - } - $configFile = $configFile -replace "\[Patch\]",$rep - Set-Content "$spicePath\config-xpui.ini" $configFile -} - -$backupVer = $configFile -match "^version" -$version = ConvertFrom-StringData $backupVer[0] -if ($version.version.Length -gt 0) { - spicetify apply -} else { - spicetify backup apply -} diff --git a/Themes/Sakura/.config/spicetify/Themes/Dribbblish/uninstall.ps1 b/Themes/Sakura/.config/spicetify/Themes/Dribbblish/uninstall.ps1 deleted file mode 100644 index ccf5757..0000000 --- a/Themes/Sakura/.config/spicetify/Themes/Dribbblish/uninstall.ps1 +++ /dev/null @@ -1,15 +0,0 @@ -spicetify config current_theme " " extensions dribbblish.js- - -$configPath = spicetify -c -$configFile = Get-Content $configPath -$find = $configFile -match "xpui.js_find_8008" -if ($find) { - $configFile = $configFile -replace [regex]::escape($find),"" -} -$repl = $configFile -match "xpui.js_repl_8008" -if ($repl) { - $configFile = $configFile -replace [regex]::escape($repl),"" -} -Set-Content $configPath $configFile - -spicetify apply