spicetify-themes/Dribbblish
2021-10-09 18:26:52 +02:00
..
assets/glue-resources/fonts add: Dribbblish v2 2021-06-02 00:01:11 +10:00
base.png add: Dribbblish v2 2021-06-02 00:01:11 +10:00
beach-sunset.png add: Dribbblish v2 2021-06-02 00:01:11 +10:00
color.ini add: gruvbox color scheme 2021-06-19 04:40:58 +10:00
dark.png [ImgBot] Optimize images 2021-07-15 07:16:45 +00:00
dribbblish.js add: connect bar state 2021-07-03 05:10:08 +10:00
gruvbox.png [ImgBot] Optimize images 2021-07-15 07:16:45 +00:00
install.ps1 fix(Dribblish): fix Windows install script 2021-08-05 22:59:03 -04:00
nord-dark.png add: Dribbblish v2 2021-06-02 00:01:11 +10:00
nord-light.png [ImgBot] Optimize images 2021-07-15 07:16:45 +00:00
purple.png [ImgBot] Optimize images 2021-07-15 07:16:45 +00:00
README.md docs(Dribbblish): remove window control section 2021-10-06 18:30:48 +02:00
samourai.png add: Dribbblish v2 2021-06-02 00:01:11 +10:00
uninstall.ps1 fix: missing path 2021-06-28 18:41:57 +10:00
user.css fix(Dribbblish): correct font for user-created playlists 2021-10-09 18:26:52 +02:00
white.png add: Dribbblish v2 2021-06-02 00:01:11 +10:00
windows-shortcut-instruction.png fix: sidebar render 2021-06-28 01:34:40 +10:00

Dribbblish

Base

base

White

white

Dark

dark

Nord-Light

nord-light

Nord-Dark

nord-dark

Beach-Sunset

beach-sunset

Purple

purple

Samourai

samourai

Gruvbox

gruvbox

Features

Resizable sidebar

img

Customizable sidebar

Rearrange icons positions, stick icons to header or hide unnecessary to save space. Turn on "Sidebar config" mode in Profile menu and hover on icon to show control buttons. After you finish customizing, turn off Config mode in Profile menu to save.

img

Playlist Folder image

Right click at folder and choose images for your playlist folder. Every image formats supported by Chrome can be used, but do keep image size small and in compressed format.

img

Left/Right expanded cover

In profile menu, toggle option "Right expanded cover" to change expaned current track cover image to left or right side, whereever you prefer.

Auto-install

Make sure you are using spicetify >= v2.5.0 and Spotify >= v1.1.56.

Windows

Invoke-WebRequest -UseBasicParsing "https://raw.githubusercontent.com/morpheusthewhite/spicetify-themes/master/Dribbblish/install.ps1" | Invoke-Expression

Manual Install

Run these commands:

Linux and MacOS:

In Bash:

cd "$(dirname "$(spicetify -c)")/Themes/Dribbblish"
mkdir -p ../../Extensions
cp dribbblish.js ../../Extensions/.
spicetify config extensions dribbblish.js
spicetify config current_theme Dribbblish color_scheme base
spicetify config inject_css 1 replace_colors 1 overwrite_assets 1
spicetify apply

Windows

In Powershell:

cd "$(spicetify -c | Split-Path)\Themes\Dribbblish"
Copy-Item dribbblish.js ..\..\Extensions
spicetify config extensions dribbblish.js
spicetify config current_theme Dribbblish color_scheme base
spicetify config inject_css 1 replace_colors 1 overwrite_assets 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 explicity 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}56,

Change Color Schemes

There are 9 color schemes you can choose: base, white, dark, dracula, nord-dark, nord-light, samourai, purple. Change scheme with commands:

spicetify config color_scheme <scheme name>
spicetify apply

Auto-uninstall

Windows

Invoke-WebRequest -UseBasicParsing "https://raw.githubusercontent.com/morpheusthewhite/spicetify-themes/v2/Dribbblish/uninstall.ps1" | Invoke-Expression

Manual uninstall

Remove the dribbblish script with the following commands

spicetify config extensions dribbblish.js-

And remove Patch lines you added in config file earlier. Finally, run:

spicetify apply