jao-notify.el 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. ;; jao-notify.el -- Interacting with notification daemon
  2. ;; Copyright (c) 2017, 2019, 2020, 2021, 2024 Jose Antonio Ortega Ruiz
  3. ;; Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
  4. ;; Start date: Sun Jan 08, 2017 20:24
  5. ;;; Comentary:
  6. ;; Simple notifications using echo or dbus notifications
  7. ;;; Code:
  8. (defvar jao-notify-use-messages nil)
  9. (defvar jao-notify-timeout 5000)
  10. (defvar jao-notify-audio-icon (jao-data-file "music-player-icon.png"))
  11. (declare-function notifications-notify "notifications")
  12. ;; "/usr/share/icons/Papirus/64x64/mimetypes/audio-x-generic.svg"
  13. ;; "/usr/share/icons/Tango/scalable/mimetypes/audio-x-generic.svg"
  14. (defun jao-notify (msg &optional title icon)
  15. (let ((title (when (and title (not (string-blank-p title))) title)))
  16. (if jao-notify-use-messages
  17. (message "%s%s%s" (or title "") (if title ": " "") (or msg ""))
  18. (let* ((args `(:timeout ,jao-notify-timeout))
  19. (args (append args
  20. (if title `(:title ,title :body ,msg) `(:title ,msg))))
  21. (args (if (and (stringp icon) (file-exists-p icon))
  22. (append args `(:app-icon ,(format "%s" icon)))
  23. args)))
  24. (apply 'notifications-notify args)))))
  25. (provide 'jao-notify)
  26. ;;; jao-notify.el ends here