Last active
December 1, 2023 04:39
-
-
Save sansmoraxz/f62f70bf75789c8deadff7079201e96e to your computer and use it in GitHub Desktop.
spicetify configs for windows using powershell - themes and extensions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# winget install Spicetify.Spicetify | |
cd "$(spicetify -c | Split-Path)" | |
git clone "https://github.com/spicetify/spicetify-themes.git" --depth 1 spicetify-themes | |
cd spicetify-themes | |
Get-ChildItem -Directory | ForEach-Object { | |
$destination = Join-Path -Path "$(spicetify -c | Split-Path)\Themes\" -ChildPath $_.Name | |
New-Item -ItemType SymbolicLink -Path $destination -Target $_.FullName | |
} | |
cd .. | |
git clone "https://github.com/CharlieS1103/spicetify-extensions.git" --depth 1 spicetify-extensions | |
cd spicetify-extensions | |
Get-ChildItem -Directory | ForEach-Object { | |
$destination = Join-Path -Path "$(spicetify -c | Split-Path)\Extensions\" -ChildPath $_.Name | |
New-Item -ItemType SymbolicLink -Path $destination -Target $_.FullName | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment