Skip to content

Commit

Permalink
chore: rename cli repo (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
afonsojramos committed May 21, 2024
1 parent bb29fbb commit 54aaa24
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 14 deletions.
2 changes: 1 addition & 1 deletion docs/advanced-usage/custom-apps.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ spicetify apply

### Lyrics Plus

Get access to the current track's lyrics from various lyrics providers (Musixmatch, Netease, Genius). Learn more [here](https://github.com/spicetify/spicetify-cli/tree/master/CustomApps/lyrics-plus).
Get access to the current track's lyrics from various lyrics providers (Musixmatch, Netease, Genius). Learn more [here](https://github.com/spicetify/cli/tree/main/CustomApps/lyrics-plus).

Colors, lyrics providers can be customized in config menu (in Profile menu, top right button with your user name).

Expand Down
10 changes: 5 additions & 5 deletions docs/advanced-usage/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ description: ⚡ An advanced view on how to install Spicetify.
### Powershell (pre-built binary) - Recommended

```powershell
iwr -useb https://raw.githubusercontent.com/spicetify/spicetify-cli/master/install.ps1 | iex
iwr -useb https://raw.githubusercontent.com/spicetify/cli/main/install.ps1 | iex
```

### Chocolatey
Expand Down Expand Up @@ -45,7 +45,7 @@ winget install Spicetify.Spicetify
### Shell (pre-built binary) - Recommended

```bash
curl -fsSL https://raw.githubusercontent.com/spicetify/spicetify-cli/master/install.sh | sh
curl -fsSL https://raw.githubusercontent.com/spicetify/cli/main/install.sh | sh
```

### Homebrew or LinuxBrew
Expand Down Expand Up @@ -159,16 +159,16 @@ If you wish to use old Spotify client v1.1.56 or older, you have to install spic
**Windows**: In powershell

```powershell
$v="1.2.1"; Invoke-WebRequest -UseBasicParsing "https://raw.githubusercontent.com/spicetify/spicetify-cli/master/install.ps1" | Invoke-Expression
$v="1.2.1"; Invoke-WebRequest -UseBasicParsing "https://raw.githubusercontent.com/spicetify/cli/main/install.ps1" | Invoke-Expression
```

**Linux/MacOS:** In bash

```bash
curl -fsSL https://raw.githubusercontent.com/spicetify/spicetify-cli/master/install.sh -o /tmp/install.sh
curl -fsSL https://raw.githubusercontent.com/spicetify/cli/main/install.sh -o /tmp/install.sh
sh /tmp/install.sh 1.2.1
```

spicetify v1 code is available in branch [`legacy`](https://github.com/spicetify/spicetify-cli/tree/legacy) if you want to build from source.
spicetify v1 code is available in branch [`legacy`](https://github.com/spicetify/cli/tree/legacy) if you want to build from source.

If you want legacy themes, you can find them [here](https://github.com/spicetify/spicetify-themes/tree/legacy).
8 changes: 5 additions & 3 deletions docs/development/compiling.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,23 @@ Clone repo and download dependencies:

```bash
cd $HOME
git clone https://github.com/spicetify/spicetify-cli
mkdir spicetify
cd spicetify
git clone https://github.com/spicetify/cli
```

### Build

#### Windows

```powershell
cd $HOME\spicetify-cli
cd $HOME\spicetify\cli
go build -o spicetify.exe
```

#### Linux and MacOS

```bash
cd ~/spicetify-cli
cd ~/spicetify/cli
go build -o spicetify
```
2 changes: 1 addition & 1 deletion docs/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Delete all files in the following folder and launch spotify again.

## Sometimes **Popup Lyrics** and/or **Lyrics Plus** seem to not work

This problem happens in the extension [Popup Lyrics](https://github.com/spicetify/spicetify-cli/wiki/Extensions#pop-up-lyrics) and custom app [Lyrics Plus](https://github.com/spicetify/spicetify-cli/wiki/Custom-Apps#lyrics-plus) mostly because your Musixmatch token has been flagged for doing too many requests. This can be fixed by just waiting without skipping songs too much, however, if it is still a problem for you, all you need to do is to install the Musixmatch official app, which is a web-based app like Spotify.
This problem happens in the extension [Popup Lyrics](https://github.com/spicetify/cli/wiki/Extensions#pop-up-lyrics) and custom app [Lyrics Plus](https://github.com/spicetify/cli/wiki/Custom-Apps#lyrics-plus) mostly because your Musixmatch token has been flagged for doing too many requests. This can be fixed by just waiting without skipping songs too much, however, if it is still a problem for you, all you need to do is to install the Musixmatch official app, which is a web-based app like Spotify.

1. **Linux:** find an archive online
**Windows:** go to [store.rg-adguard.net](https://store.rg-adguard.net/) and then select ProductID and enter `9wzdncrfj235` and click done. Download the .appxbundle and install.
Expand Down
4 changes: 2 additions & 2 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This is the installation method we recommend for most users. It is the fastest a
#### Powershell (pre-built binary)

```powershell
iwr -useb https://raw.githubusercontent.com/spicetify/spicetify-cli/master/install.ps1 | iex
iwr -useb https://raw.githubusercontent.com/spicetify/cli/main/install.ps1 | iex
```

Also run the following if you would like to install the [**Spicetify Marketplace**](https://github.com/spicetify/spicetify-marketplace), which gives you access to a tab in Spotify's sidebar that allows you to search for and install _themes_, _extensions_, and _snippets_.
Expand All @@ -27,7 +27,7 @@ iwr -useb https://raw.githubusercontent.com/spicetify/spicetify-marketplace/main
#### Shell (pre-built binary)
Spicetify CLI
```sh
curl -fsSL https://raw.githubusercontent.com/spicetify/spicetify-cli/master/install.sh | sh
curl -fsSL https://raw.githubusercontent.com/spicetify/cli/main/install.sh | sh
```
Spicetify Marketplace
```sh
Expand Down
4 changes: 2 additions & 2 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ const config = {
{
html: `
<div style="display:flex;align-items:center">
<img src="https://img.shields.io/github/stars/spicetify/spicetify-cli?style=social" alt="GitHub stars" />
<img src="https://img.shields.io/github/stars/spicetify/cli?style=social" alt="GitHub stars" />
</div>
`,
href: 'https://github.com/spicetify/spicetify-cli',
href: 'https://github.com/spicetify/cli',
position: 'right',
},
],
Expand Down

0 comments on commit 54aaa24

Please sign in to comment.