From cb299665913727a2dcc5c79bf1e56a8a110c02bf Mon Sep 17 00:00:00 2001 From: Kafva <36083692+Kafva@users.noreply.github.com> Date: Mon, 25 Apr 2022 22:59:39 +0200 Subject: [PATCH] fix: modify filePath from .config to .cache (#1618) Co-authored-by: ririxi --- spicetify.go | 4 +--- src/cmd/devtools.go | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/spicetify.go b/spicetify.go index e87cf44d51..d3bec2cae4 100644 --- a/spicetify.go +++ b/spicetify.go @@ -280,11 +280,9 @@ restore Restore Spotify to original state. clear Clear current backup files. -enable-devtool Enable Spotify's developer tools. +enable-devtools Enable Spotify's developer tools. Hit Ctrl + Shift + I in the client to start using. -disable-devtool Disable Spotify's developer tools. - watch Enter watch mode. On default, update CSS on color.ini or user.css's changes. To update on change, use with any combination of the following flags: diff --git a/src/cmd/devtools.go b/src/cmd/devtools.go index 0c6fa52ca4..6cd3493c07 100644 --- a/src/cmd/devtools.go +++ b/src/cmd/devtools.go @@ -25,7 +25,7 @@ func SetDevTools() { homePath = snapSpotifyHome } - filePath = homePath + "/.config/spotify/offline.bnk" + filePath = homePath + "/.cache/spotify/offline.bnk" } case "darwin": filePath = os.Getenv("HOME") + "/Library/Application Support/Spotify/PersistentCache/offline.bnk"