Variable: system-taskbar-dbus-timeout

system-taskbar-dbus-timeout is a customizable variable defined in system-taskbar.el.gz.

Value

nil

Documentation

Number of milliseconds to wait for D-Bus responses.

If nil, use the D-Bus default timeout which is 25,000 (i.e., 25s).

If your D-Bus desktop extension needs extra time to respond, in which case system-taskbar-mode(var)/system-taskbar-mode(fun) might not initialize or related functions might not take visible effect, bind this to a value higher than 25,000 to find what works for your system.

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

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/system-taskbar.el.gz
(defcustom system-taskbar-dbus-timeout nil
  "Number of milliseconds to wait for D-Bus responses.
If nil, use the D-Bus default timeout which is 25,000 (i.e., 25s).

If your D-Bus desktop extension needs extra time to respond, in which
case `system-taskbar-mode' might not initialize or related functions
might not take visible effect, bind this to a value higher than 25,000
to find what works for your system."
  :type '(choice (const :tag "Default" nil) natnum)
  :version "31.1")