Variable: org-agenda-current-time-string

org-agenda-current-time-string is a customizable variable defined in org-agenda.el.gz.

Value

"now - - - - - - - - - - - - - - - - - - - - - - - - -"

Documentation

The string for the current time marker in the agenda.

This variable was added, or its default value changed, in Org version
9.6.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defcustom org-agenda-current-time-string
  (if (and (display-graphic-p)
           (char-displayable-p ?←)
           (char-displayable-p ?─))
      "← now ───────────────────────────────────────────────"
    "now - - - - - - - - - - - - - - - - - - - - - - - - -")
  "The string for the current time marker in the agenda."
  :group 'org-agenda-time-grid
  :package-version '(Org . "9.6")
  :type 'string)