aboutsummaryrefslogtreecommitdiffstats
path: root/oni-emms.el
diff options
context:
space:
mode:
authorGravatar Tom Willemse2022-08-17 14:50:25 -0700
committerGravatar Tom Willemse2022-08-17 14:50:25 -0700
commitd8158ea7eeab765d5c097bcb55140d25efb2a8f9 (patch)
tree8b111118a7133f465916985234285967d4278f34 /oni-emms.el
parent54417e58525b35b478057a7cbb319a2487582d7b (diff)
downloademacs-config-d8158ea7eeab765d5c097bcb55140d25efb2a8f9.tar.gz
emacs-config-d8158ea7eeab765d5c097bcb55140d25efb2a8f9.zip
Add oni-emms module
Diffstat (limited to 'oni-emms.el')
-rw-r--r--oni-emms.el35
1 files changed, 35 insertions, 0 deletions
diff --git a/oni-emms.el b/oni-emms.el
new file mode 100644
index 0000000..59e9a3c
--- /dev/null
+++ b/oni-emms.el
@@ -0,0 +1,35 @@
+;;; oni-emms.el --- Configuration for EMMS -*- lexical-binding: t; -*-
+
+;; Copyright (C) 2022 Tom Willemse
+
+;; Author: Tom Willemse <tom@ryuslash.org>
+;; Keywords: local
+;; Version: 2022.0817.142820
+;; Package-Requires: (emms)
+
+;; This program is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program. If not, see <https://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; Configuration for EMMS. Loads and sets up EMMS to play CDs with MPV.
+
+;;; Code:
+
+(require 'emms)
+(require 'emms-player-mpv)
+
+(add-to-list 'emms-player-list 'emms-player-mpv)
+
+(provide 'oni-emms)
+;;; oni-emms.el ends here