Skip to content

Instantly share code, notes, and snippets.

@sansmoraxz
Last active December 1, 2023 04:39
Show Gist options
  • Save sansmoraxz/f62f70bf75789c8deadff7079201e96e to your computer and use it in GitHub Desktop.
Save sansmoraxz/f62f70bf75789c8deadff7079201e96e to your computer and use it in GitHub Desktop.
spicetify configs for windows using powershell - themes and extensions
# 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