From 78ff7bdabd55581a3a2c673c9e5c53969fb3cd1f Mon Sep 17 00:00:00 2001 From: zdm Date: Mon, 8 Feb 2021 02:33:30 -0700 Subject: [PATCH] add emms config --- init.el | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/init.el b/init.el index 779a49b..2375ab5 100644 --- a/init.el +++ b/init.el @@ -630,3 +630,14 @@ smtpmail-stream-type 'starttls send-mail-function 'smtpmail-send-it message-send-mail-function 'smtpmail-send-it)) + +;;; EMMS + +(use-package emms + :ensure t + :init + (setq emms-player-list '(emms-player-mpv)) + (setq emms-volume-change-function 'emms-volume-pulse-change) + (setq emms-player-mpv-parameters '("--quiet" "--really-quiet" "--no-audio-display" "--no-video")) + :config + (emms-all))