mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-12-21 13:23:02 +01:00
30 lines
548 B
Markdown
30 lines
548 B
Markdown
cmus
|
|
====
|
|
|
|
[cmus][1] is a small, fast and powerful console music player for Unix-like operating systems.
|
|
|
|
|
|
## up and running
|
|
|
|
```bash
|
|
$ docker-compose up -d
|
|
$ docker-compose exec cmus cmus-remote --help
|
|
$ docker-compose exec cmus cmus-remote --passwd secret
|
|
>>> clear
|
|
>>> add ~/music
|
|
>>> set continue=true
|
|
>>> set repeat=true
|
|
>>> set shuffle=true
|
|
>>> set resume=true
|
|
>>> player-play
|
|
>>> ^D
|
|
$ docker-compose attach cmus
|
|
^P^Q to exit
|
|
$ alsamixer
|
|
<ESC> to exit
|
|
```
|
|
|
|
> cmus-remote: password required for tcp/ip connection
|
|
|
|
[1]: https://cmus.github.io/
|