;;; +bongo.el --- customizations in bongo -*- lexical-binding: t; -*- ;;; Commentary: ;;; Code: (defun +bongo-notify () (notifications-notify :title "Now Playing" :body (let ((bongo-field-separator " ")) (substring-no-properties (bongo-formatted-infoset))) :urgency 'low :transient t)) (provide '+bongo) ;;; +bongo.el ends here