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
- Host: GitHub
- URL: https://github.com/nulldev/sp
- Owner: NullDev
- License: other
- Created: 2019-10-10T18:59:31.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-01-18T10:55:00.000Z (about 5 years ago)
- Last Synced: 2025-03-19T21:27:41.456Z (10 months ago)
- Topics: cli, deb, debian-package, nulldev, sp, spotify
- Language: Shell
- Homepage:
- Size: 23.4 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.