ncurses Spotify client written in Rust using librespot. It is heavily inspired by ncurses MPD clients, such as ncmpc. My motivation was to provide a simple and resource friendly alternative to the official client as well as to support platforms that currently don't have a Spotify client, such as the *BSDs.
NOTE: ncspot is still in a very early development stage. Things will break and change. The feature set is still very limited. Also, as this is my first contact with Rust, some design decisions may need to be reworked in the future. Contributions welcome, but please be kind ;)
- Rust
libpulse-dev
(orportaudio-dev
, if you want to use the PortAudio backend)libncurses-dev
andlibssl-dev
- A Spotify premium account
- pkg-config
- Set your login credentials (see configuration)
- Build using
cargo build --release
- The initial screen is the debug log. Press
F2
for the queue andF3
to search for a track. More key bindings are described below.
These keybindings are hardcoded for now. In the future it may be desirable to have them configurable.
- Navigate through the screens using the F-keys:
F1
: QueueF2
: SearchF3
: Playlistsd
deletes the currently selected trackc
clears the entire playlist
F9
: Debug log- Tracks and playlists can be played using
Return
and queued usingSpace
Shift-p
toggles playback of a trackShift-s
stops a trackq
quits ncspot
You can also open a Vim style commandprompt using :
, the following commands
are supported:
quit
: Quit ncspottoggle
: Toggle playbackstop
: Stop playbacknext
: Play next trackclear
: Clear playlist
The screens can be opened with queue
, search
, playlists
and log
, whereas
search
can be supplied with a search term that will be entered after opening
the search view.
For now, a configuration file containing Spotify login data needs to be created manually, until a login-screen is implemented (hrkfdn#1).
The file needs to look like this:
username = "spotify_user"
password = "spotify_password"
Please save it to ~/.config/ncspot
.
By default ncspot is built using the PulseAudio backend.
To make it use the PortAudio backend (e.g. for macOS, *BSD, ..),
you need to recompile ncspot with the portaudio_backend
feature:
cargo run --no-default-features --features portaudio_backend