Skip to content

Commit 8bb13a3

Browse files
Ironicafonsojramos
andauthored
feat: add spicetify config instructions to getting started (#194)
Co-authored-by: Afonso Jorge Ramos <afonsojorgeramos@gmail.com>
1 parent fa50902 commit 8bb13a3

1 file changed

Lines changed: 41 additions & 0 deletions

File tree

docs/getting-started.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,47 @@ yay -S spicetify-cli
9191

9292
Depending on how you installed Spotify, you may need additional configuration.
9393

94+
<details>
95+
<summary>Adding Spicetify to PATH</summary>
96+
97+
If you installed Spicetify via a package manager (Homebrew, AUR, etc.) and the `spicetify` command isn't found, you may need to add it to your PATH manually.
98+
99+
First, determine your shell:
100+
101+
```bash
102+
echo $SHELL
103+
```
104+
105+
Then add `~/.spicetify` to your PATH based on your shell:
106+
107+
<Tabs>
108+
<TabItem value="zsh" label="zsh" default>
109+
110+
```bash
111+
echo 'export PATH=$PATH:~/.spicetify' >> ~/.zshrc
112+
source ~/.zshrc
113+
```
114+
115+
</TabItem>
116+
<TabItem value="bash" label="bash">
117+
118+
```bash
119+
echo 'export PATH=$PATH:~/.spicetify' >> ~/.bashrc
120+
source ~/.bashrc
121+
```
122+
123+
</TabItem>
124+
<TabItem value="fish" label="fish">
125+
126+
```fish
127+
fish_add_path ~/.spicetify
128+
```
129+
130+
</TabItem>
131+
</Tabs>
132+
133+
</details>
134+
94135
<details>
95136
<summary>Spotify from AUR</summary>
96137

0 commit comments

Comments
 (0)