summary refs log tree commit diff stats
path: root/lisp/+bongo.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/+bongo.el')
-rw-r--r--lisp/+bongo.el17
1 files changed, 17 insertions, 0 deletions
diff --git a/lisp/+bongo.el b/lisp/+bongo.el new file mode 100644 index 0000000..d1a2ef4 --- /dev/null +++ b/lisp/+bongo.el
@@ -0,0 +1,17 @@
1;;; +bongo.el --- customizations in bongo -*- lexical-binding: t; -*-
2
3;;; Commentary:
4
5;;; Code:
6
7(defun +bongo-notify ()
8 (notifications-notify
9 :title "Now Playing"
10 :body (let ((bongo-field-separator "
11"))
12 (substring-no-properties (bongo-formatted-infoset)))
13 :urgency 'low
14 :transient t))
15
16(provide '+bongo)
17;;; +bongo.el ends here