Variable: org-show-notification-handler

org-show-notification-handler is a customizable variable defined in org-clock.el.gz.

Value

nil

Documentation

Function or program to send notification with.

The function or program will be called with the notification string as argument.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-clock.el.gz
(defcustom org-show-notification-handler nil
  "Function or program to send notification with.
The function or program will be called with the notification
string as argument."
  :group 'org-clock
  :type '(choice
	  (const nil)
	  (string :tag "Program")
	  (function :tag "Function")))