Function: org-notify
org-notify is a byte-compiled function defined in org-clock.el.gz.
Signature
(org-notify NOTIFICATION &optional PLAY-SOUND)
Documentation
Send a NOTIFICATION and maybe PLAY-SOUND.
If PLAY-SOUND is non-nil, it overrides org-clock-sound.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-clock.el.gz
(defun org-notify (notification &optional play-sound)
"Send a NOTIFICATION and maybe PLAY-SOUND.
If PLAY-SOUND is non-nil, it overrides `org-clock-sound'."
(org-show-notification notification)
(if play-sound (org-clock-play-sound play-sound)))