From d37e9f92dc92c6fe471691e1214db0615cc70199 Mon Sep 17 00:00:00 2001 From: Tim Vaughan Date: Fri, 20 Apr 2018 17:08:32 +0200 Subject: [PATCH] Initial commit. --- emus.el | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 emus.el diff --git a/emus.el b/emus.el new file mode 100644 index 0000000..d53f430 --- /dev/null +++ b/emus.el @@ -0,0 +1,18 @@ +;;; emus.el --- Simple music player for Emacs + +;; Author: T. G. Vaughan +;; Version: 1.0 +;; Keywords: multimedia +;; URL: http://github.com/tgvaughan/emus + +;; Commentary: + +;; This is a simple package for playing audio from a local library +;; of audio files. + +;;;###autoload +(defun emus () + "Switch to *emus* audio library buffer." + (interactive) + (switch-to-buffer "*emus*") + (emus-mode)) -- 2.20.1