The Lambda Lab
/
projects
/
emus.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(initial)
Initial commit.
author
Tim Vaughan
<tgvaughan@gmail.com>
Fri, 20 Apr 2018 15:08:32 +0000
(17:08 +0200)
committer
Tim Vaughan
<tgvaughan@gmail.com>
Fri, 20 Apr 2018 15:08:32 +0000
(17:08 +0200)
emus.el
[new file with mode: 0644]
patch
|
blob
diff --git a/emus.el
b/emus.el
new file mode 100644
(file)
index 0000000..
d53f430
--- /dev/null
+++ b/
emus.el
@@ -0,0
+1,18
@@
+;;; emus.el --- Simple music player for Emacs
+
+;; Author: T. G. Vaughan <tgvaughan@gmail.com>
+;; 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))