Question's in the title, really. Cmus documentation is pretty light on how to create new play lists, add songs to them, and then play them. I'd like to know step-by-step how to do that.
2 Answers
And I just figured it out.
:pl-create my-playlist3to navigate to the playlists window- Highlight the new playlist and press space to mark it.
- Add songs using either of the following:
:add -p ~/Music/artist/to add songs from that directory to the marked playlist- Go to the "Sorted library view" by pressing 2
-> find artist / song / directory / etc. by searching with/
-> select the desired songs with space
-> press y to "copy tracks to the marked playlist"
TIP: If you need an online version of the CMUS man page, go to the CMUS documentation page. While the versions linked there are harder on the eyes, they are still better than the other hopelessly out of date ones.
- 1You can also
cdinto.config/cmus/playlistsand thentouchfiles. Then follow the:add -p...part.trashCODEer– trashCODEer2021-11-11 22:46:44 +00:00Commented Nov 11, 2021 at 22:46 - 2Great, never seen the option (:pl-create) before. Helped me out with being able to create playlists. PS once you have created a playlist be sure to save it with :save -p nameoflistJames Cobb– James Cobb2022-08-16 18:18:36 +00:00Commented Aug 16, 2022 at 18:18
- 1@DeepDeadpool Hope you don't mind the edit - I would have just copied your answer into a new one and added the few lines in the end.toraritte– toraritte2023-09-27 14:32:06 +00:00Commented Sep 27, 2023 at 14:32
- 1No it's a good edit. Thanks.Raven– Raven2023-09-28 20:35:13 +00:00Commented Sep 28, 2023 at 20:35
Very late answer, but as I found this page while trying to figure out how to add playlists in cmus I'll add my solution: you can create playlist files and then use pl-import to import the files.
The playlist files contain the full paths to the files. For example, you can have a playlist file like this:
$ cat /home/example/Music/playlists/shostakovich__string_quartet_1 /home/example/Music/shostakovich/complete_quartets/1/01_op_49_moderato.ogg /home/example/Music/shostakovich/complete_quartets/1/02_op_49_moderato.ogg /home/example/Music/shostakovich/complete_quartets/1/03_op_49_allegro_molto.ogg /home/example/Music/shostakovich/complete_quartets/1/04_op_49_allegro.ogg In cmus, you can then import the file:
:pl-import /home/example/Music/playlists/shostakovich__string_quartet_1
cmuson these two pages 1, 2