summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2012-12-04 17:44:57 +0100
committerGravatar Tom Willemsen2012-12-04 17:44:57 +0100
commit272c8f72380cf7c5355df5735d951cc97ecb9ffc (patch)
tree07d0850f67ab982a17896283c4f3739e98380f62
parentff77b0c0d956f51930659e8b003659271e12cb0d (diff)
downloaddotfiles-272c8f72380cf7c5355df5735d951cc97ecb9ffc.tar.gz
dotfiles-272c8f72380cf7c5355df5735d951cc97ecb9ffc.zip
.emacs.d/site-lisp/metalexpress.el
-rw-r--r--.emacs.d/site-lisp/metalexpress.el29
1 files changed, 27 insertions, 2 deletions
diff --git a/.emacs.d/site-lisp/metalexpress.el b/.emacs.d/site-lisp/metalexpress.el
index ef67d83..2f77638 100644
--- a/.emacs.d/site-lisp/metalexpress.el
+++ b/.emacs.d/site-lisp/metalexpress.el
@@ -30,12 +30,32 @@
(defcustom metal-express-radio-playlist-url
"http://usa7-vn.mixstream.net/listen/8248.m3u"
- "The URL of the Metal Express Radio stream.")
+ "The URL of the Metal Express Radio stream."
+ :group 'metal-express-radio
+ :type 'string)
+
+(defcustom metal-express-radio-song-changed-hook nil
+ "Hook run when the currently playing song changes."
+ :type 'hook
+ :group 'metal-express-radio)
+
+(defvar metal-express-radio-currently-playing nil
+ "The currently playing song.")
(defun mer-proc-filter (proc string)
(when (string-match "^ICY Info: StreamTitle='\\(.*\\)';StreamUrl='';"
string)
- (message (match-string 1 string))))
+ (setq metal-express-radio-currently-playing (match-string 1 string))
+ (apply 'run-hooks metal-express-radio-song-changed-hook)))
+
+(defun metal-express-radio-echo-currently-playing ()
+ (interactive)
+ (message metal-express-radio-currently-playing))
+
+(defun metal-express-radio-notify ()
+ (interactive)
+ (notifications-notify :title "Now playing:"
+ :body metal-express-radio-currently-playing))
;;;###autoload
(defun metal-express-radio-start ()
@@ -50,5 +70,10 @@
(interactive)
(kill-process (get-buffer-process "*Metal Express Radio*")))
+(add-hook 'metal-express-radio-song-changed-hook
+ 'metal-express-radio-echo-currently-playing)
+(add-hook 'metal-express-radio-song-changed-hook
+ 'metal-express-radio-notify)
+
(provide 'metalexpress)
;;; metalexpress.el ends here