Configure mpd client, settle on mingus

This commit is contained in:
Curt Spark 2024-12-13 21:03:53 +00:00
parent ab0acd75e3
commit 96a28d76fa
1 changed files with 14 additions and 0 deletions

View File

@ -1475,3 +1475,17 @@ Start emacs server, this can then be used to open buffers/set the current emacs
#+BEGIN_SRC emacs-lisp
(server-start)
#+END_SRC
** MPD
Clients that support MPD
*** MPDel
MPDel is an Emacs client for Music Player Daemon (MPD), a flexible, powerful, server-side application for playing music.
+BEGIN_SRC emacs-lisp
(use-package mpdel
:ensure t)
+END_SRC
*** Mingus
Mingus is a frontend for GNU Emacs to the Music Player daemon. The interface closely, though not strictly, resembles that of ncmpc.
#+BEGIN_SRC emacs-lisp
(use-package mingus
:ensure t)
#+END_SRC