From: Tim Vaughan Date: Fri, 20 Apr 2018 15:08:32 +0000 (+0200) Subject: Initial commit. X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?p=emus.git;a=commitdiff_plain;h=d37e9f92dc92c6fe471691e1214db0615cc70199 Initial commit. --- d37e9f92dc92c6fe471691e1214db0615cc70199 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))