https://github.com/kolharsam/bb-spotify
Control your Music player form the command line using babashka
https://github.com/kolharsam/bb-spotify
babashka clojure spotify
Last synced: 10 days ago
JSON representation
Control your Music player form the command line using babashka
- Host: GitHub
- URL: https://github.com/kolharsam/bb-spotify
- Owner: kolharsam
- Created: 2020-05-12T12:22:09.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-07-01T19:48:56.000Z (over 5 years ago)
- Last Synced: 2025-09-13T11:02:31.062Z (about 1 month ago)
- Topics: babashka, clojure, spotify
- Language: Clojure
- Homepage:
- Size: 20.5 KB
- Stars: 14
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bb-spotify
Simple scripts to control your music from the command line
This can work on most MacOSX devices. Other platforms will
require the spotify API. Which will be updated at some point in time. :PThese scripts can work for Apple Music too! Use `bb-apple-music.clj` instead.
## Instructions
- Have the [Spotify](https://www.spotify.com/download/other/) app installed on your machine.
- Have [bb](https://github.com/borkdude/babashka) installed on your machine.
## Commands available
```text
The following options are currently available, if you have the Spotify app installed.
play (-p, --play) - play current track
pause (-s, --pause) - pause current track
current (-c, --current) - shows some information about current song
next (-n, --next) - goes to next song in the playlist
prev (-l, --last) - goes to previous song in the playlist
repeat (-r, --repeat) - plays current track on repeat
shuffle (-z, --shuffle) - used to toggle shuffle on the playlist
vol-up (-u, --volume-up) - increses volume by 10%
vol-dn (-d, --volume-down) - decreses volume by 10%
status (-t, --status) - current status of spotify player
bb-spotify-help (-v, --sp-help) - displays this information
open (-o, --open) - opens the app
close (-x, --close) - closes the app```
## Reference(s)
- [shpotify](https://github.com/hnarayanan/shpotify)