Variable: org-clock-sound

org-clock-sound is a customizable variable defined in org-clock.el.gz.

Value

nil

Documentation

Sound to use for notifications.

Possible values are:

nil No sound played
t Standard Emacs beep
file name Play this sound file, fall back to beep

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-clock.el.gz
(defcustom org-clock-sound nil
  "Sound to use for notifications.
Possible values are:

nil        No sound played
t          Standard Emacs beep
file name  Play this sound file, fall back to beep"
  :group 'org-clock
  :type '(choice
	  (const :tag "No sound" nil)
	  (const :tag "Standard beep" t)
	  (file  :tag "Play sound file")))