DefaultDynamic for Spicetify
This is a tweaked version of the Default theme. The main differences are the light/dark toggle, the background cover and the dynamic highlight color, ie. it will match the current album art.
Make sure you are using latest releases of Spicetify and Spotify
Invoke-WebRequest -UseBasicParsing "https://raw.githubusercontent.com/JulienMaille/spicetify-dynamic-theme/master/install.ps1" | Invoke-Expression
curl -fsSL https://raw.githubusercontent.com/JulienMaille/spicetify-dynamic-theme/master/install.sh | sh
- Download the latest Source code (zip)
- Extract the files to your Spicetify/Themes folder (rename the zipped folder to
DefaultDynamic
) - Copy
default-dynamic.js
to your Spicetify/Extensions folder - Add the 2 lines in
[Patch]
section of the config file (see details below) - Run:
spicetify config extensions default-dynamic.js extensions Vibrant.min.js spicetify config current_theme DefaultDynamic spicetify config color_scheme base spicetify config inject_css 1 replace_colors 1 spicetify apply
From Spotify > v1.1.62, in sidebar, they use an adaptive render mechanic to actively show and hide items on scroll. It helps reducing number of items to render, hence there is significant performance boost if you have a large playlists collection. But the drawbacks is that item height is hard-coded, it messes up user interaction when we explicitly change, in CSS, playlist item height bigger than original value. So you need to add these 2 lines in Patch section in config file:
[Patch]
xpui.js_find_8008 = ,(\w+=)32,
xpui.js_repl_8008 = ,${1}28,
Automatic dark mode should work on MacOs and Linux out of the box. From Spotify > v1.2.17, dark mode is forced in Windows builds. You will need to patch Spotify.exe using this script:
Invoke-WebRequest -UseBasicParsing "https://raw.githubusercontent.com/JulienMaille/spicetify-dynamic-theme/master/patch-dark-mode.ps1" | Invoke-Expression
Windows user, please edit your Spotify shortcut and add flag --transparent-window-controls
after the Spotify.exe
Invoke-WebRequest -UseBasicParsing "https://raw.githubusercontent.com/JulienMaille/spicetify-dynamic-theme/master/uninstall.ps1" | Invoke-Expression
curl -fsSL https://raw.githubusercontent.com/JulienMaille/spicetify-dynamic-theme/master/uninstall.sh | sh
- Remove Patch lines you added in config file earlier.
- Run:
spicetify config current_theme " " color_scheme " " extensions default-dynamic.js- extensions Vibrant.min.js- spicetify apply