Variable: gnus-mode-line-logo

gnus-mode-line-logo is a customizable variable defined in gnus.el.gz.

Value

((:type svg :file "gnus-pointer.svg" :ascent center)
 (:type xpm :file "gnus-pointer.xpm" :ascent center)
 (:type xbm :file "gnus-pointer.xbm" :ascent center))

Documentation

Image spec for the Gnus logo to be displayed in mode-line.

If non-nil, it should be a list of image specifications to be passed as the first argument to find-image, which see. Then, if the display is capable of showing images, the Gnus logo will be displayed as part of the buffer-identification in the mode-line of Gnus-buffers.

If nil, there will be no Gnus logo in the mode-line.

This variable was added, or its default value changed, in Emacs 30.1.

Probably introduced at or before Emacs version 30.1.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus.el.gz
(defcustom gnus-mode-line-logo
  '((:type svg :file "gnus-pointer.svg" :ascent center)
     (:type xpm :file "gnus-pointer.xpm" :ascent center)
     (:type xbm :file "gnus-pointer.xbm" :ascent center))
  "Image spec for the Gnus logo to be displayed in mode-line.

If non-nil, it should be a list of image specifications to be passed
as the first argument to `find-image', which see.  Then, if the display
is capable of showing images, the Gnus logo will be displayed as part of
the buffer-identification in the mode-line of Gnus-buffers.

If nil, there will be no Gnus logo in the mode-line."
  :group 'gnus-visual
  :type '(choice
           (repeat :tag "List of Gnus logo image specifications" (plist))
           (const :tag "Don't display Gnus logo" nil))
  :version "30.1")