Skip to content

Installation

Nam Anh edited this page Sep 24, 2022 · 9 revisions

Auto Install

Windows

Open Powershell and paste the following:

Invoke-WebRequest -UseBasicParsing "https://raw.githubusercontent.com/spicetify/spicetify-marketplace/main/resources/install.ps1" | Invoke-Expression

MacOS and Linux

Open a terminal and paste the following:

curl -fsSL https://raw.githubusercontent.com/spicetify/spicetify-marketplace/main/resources/install.sh | sh

Manual Install (recommended)

You can either download the latest release from here, or download the latest dev build from the dist branch here. Extract the zip, and copy resulting folder into your Spicetify custom apps directory as marketplace:

Platform Path
Linux ~/.config/spicetify/CustomApps/ or $XDG_CONFIG_HOME/.config/spicetify/CustomApps/
MacOS ~/.config/spicetify/CustomApps/ or $SPICETIFY_CONFIG/CustomApps/
Windows %appdata%/spicetify/CustomApps/

At least one theme must be applied in order for Marketplace to install themes correctly, in case you haven't applied one you can use the Marketplace placeholder theme. Start by making a marketplace folder in the Themes directory inside Spicetify config folder, download this color scheme file then run the following commands:

spicetify config inject_css 1
spicetify config replace_colors 1
spicetify config current_theme marketplace

After putting the marketplace folder into the correct custom apps folder, run the following command to enable it:

spicetify config custom_apps marketplace
spicetify apply

Note: Using the config command to add the custom app will always append the file name to the existing custom apps list. It does not replace the whole key's value.

Or you can manually edit your config-xpui.ini file. Add your desired custom apps folder names in the custom_apps key, separated them by the | character. Example:

[AdditionalOptions]
...
custom_apps = reddit | marketplace

Then run:

spicetify apply
Clone this wiki locally