Add emms bind to play/pause

This commit is contained in:
Evie Litherland-Smith 2023-11-27 16:00:20 +00:00
parent 3561e60c42
commit 917544f1c4
2 changed files with 6 additions and 4 deletions

View file

@ -715,9 +715,10 @@
(ement-save-sessions t))
(use-package emms
:bind (("C-c e e" . emms-smart-browse)
:bind (("C-c e e" . emms-pause)
("C-c e b" . emms-browser)
("C-c e p" . emms-playlist-mode-go))
("C-c e p" . emms-playlist-mode-go)
("C-c e C-e" . emms-smart-browse))
:custom
(emms-player-list '(emms-player-mpv))
(emms-info-functions '(emms-info-native))

View file

@ -853,9 +853,10 @@ For reference information, see [[https://orgmode.com][Org-mode website]]
** EMMS
#+BEGIN_SRC emacs-lisp
(use-package emms
:bind (("C-c e e" . emms-smart-browse)
:bind (("C-c e e" . emms-pause)
("C-c e b" . emms-browser)
("C-c e p" . emms-playlist-mode-go))
("C-c e p" . emms-playlist-mode-go)
("C-c e C-e" . emms-smart-browse))
:custom
(emms-player-list '(emms-player-mpv))
(emms-info-functions '(emms-info-native))