mirror of
https://github.com/danbulant/dribbblish-dynamic-theme
synced 2026-05-19 04:08:53 +00:00
15 lines
488 B
PowerShell
15 lines
488 B
PowerShell
spicetify config current_theme " " extensions dribbblish-dynamic.js-
|
|
|
|
$spicePath = spicetify -c | Split-Path
|
|
$configFile = Get-Content "$spicePath\config-xpui.ini"
|
|
$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 "$spicePath\config-xpui.ini" $configFile
|
|
|
|
spicetify apply
|