mirror of
https://github.com/morpheusthewhite/spicetify-themes.git
synced 2024-11-22 19:02:45 +01:00
16 lines
449 B
PowerShell
16 lines
449 B
PowerShell
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
|