An open API service indexing awesome lists of open source software.

https://github.com/nulldev/sp

:sound: Debian Package for sp - a command-line client for Spotify's dbus interface
https://github.com/nulldev/sp

cli deb debian-package nulldev sp spotify

Last synced: 10 months ago
JSON representation

:sound: Debian Package for sp - a command-line client for Spotify's dbus interface

Awesome Lists containing this project

README

          

# sp
Debian/Ubuntu Package for sp - a command-line client for Spotify's dbus interface

> _sp is a command-line client for Spotify's dbus interface. Play, pause, skip and search tracks from the comfort of your command line._

Original Script by Wander Nauta:

https://gist.github.com/wandernauta/6800547

## How to install:

- [Download](https://github.com/NullDev/sp/releases/download/1.0/sp_1.0-1_all.deb) the binary.
- Open a terminal and navigate into the folder containing the downloaded binary.
- Finally run:

$ `sudo dpkg -i sp_1.0-1_all.deb`
- (Optional) Delete the `.deb` file, it's not needed anymore.
- Done.


## (Optional) Building the `.deb` yourself:

- Install the required packages:

$ `sudo apt-get install -y dh-make devscripts`
- Clone the repository and navigate into it:

$ `git clone https://github.com/NullDev/sp.git && cd sp`
- Remove the existing `.deb`:

$ `rm sp_1.0-1_all.deb`
- Navigate into the [sp-1.0](https://github.com/NullDev/sp/tree/master/sp-1.0) folder:

$ `cd sp-1.0`
- Use the following command to build the .deb:

$ `debuild -us -uc`
- Now navigate back into the repository root and you should see your `.deb`:

$ `cd .. && ls`
- Finally, install it:

$ `sudo dpkg -i sp_1.0-1_all.deb`
- Done.