Variable: system-taskbar-mode
system-taskbar-mode is a customizable variable defined in
system-taskbar.el.gz.
Value
nil
Documentation
Non-nil if System-Taskbar mode is enabled.
See the system-taskbar-mode(var)/system-taskbar-mode(fun) command
for a description of this minor mode.
Setting this variable directly does not take effect;
either customize it (see the info node (emacs)Easy Customization)
or call the function system-taskbar-mode(var)/system-taskbar-mode(fun).
Probably introduced at or before Emacs version 31.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/system-taskbar.el.gz
;;;###autoload
(define-minor-mode system-taskbar-mode
"System GUI taskbar icon badge, progress report, alerting."
:global t
(when noninteractive
(warn "Batch mode does not support `system-taskbar'"))
(cond (system-taskbar-mode
(if (and (system-taskbar--set-back-end)
(system-taskbar--enable))
(when system-taskbar-use-progress-reporter
(system-taskbar-progress-reporter-install))
(setq system-taskbar-mode nil)
(warn "`system-taskbar' could not be initialized")))
(t
(system-taskbar-progress-reporter-remove)
(when system-taskbar--back-end
(system-taskbar--badge nil)
(system-taskbar--attention nil)
(system-taskbar--progress nil)
(system-taskbar--disable)
(setq system-taskbar--back-end nil)))))