32 lines
725 B
Org Mode
32 lines
725 B
Org Mode
#+TITLE: EMMS Configuration
|
|
|
|
* Intro
|
|
Using emacs as a music player
|
|
|
|
* Dependencies
|
|
- mpv, or other media player supported by EMMS
|
|
|
|
#+begin_src emacs-lisp
|
|
(use-package emms
|
|
:config
|
|
(emms-all)
|
|
(emms-default-players)
|
|
(emms-mode-line 0)
|
|
:custom
|
|
(emms-source-file-default-directory "~/music"
|
|
"location of music files")
|
|
:bind
|
|
("s-m ." . emms-next)
|
|
("s-m ," . emms-previous)
|
|
("s-m /" . emms-pause)
|
|
:commands
|
|
emms-play-directory
|
|
emms-add-directory
|
|
emms-add-dired
|
|
emms-playlist-mode
|
|
emms-browse
|
|
emms-shuffle
|
|
emms-playlist-mode-go)
|
|
#+end_src
|
|
|