Function: hycontrol-set-screen-offsets
hycontrol-set-screen-offsets is an interactive and byte-compiled
function defined in hycontrol.el.
Signature
(hycontrol-set-screen-offsets)
Documentation
Set screen edge offsets to the first matching list of offsets.
Offsets are from hycontrol-screen-offset-alist. See its
documentation for more information.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hycontrol.el
(defun hycontrol-set-screen-offsets ()
"Set screen edge offsets to the first matching list of offsets.
Offsets are from `hycontrol-screen-offset-alist'. See its
documentation for more information."
(interactive)
(let ((offsets (hycontrol-get-screen-offsets)))
(setq hycontrol-screen-left-offset (nth 0 offsets)
hycontrol-screen-top-offset (nth 1 offsets)
hycontrol-screen-right-offset (nth 2 offsets)
hycontrol-screen-bottom-offset (nth 3 offsets))
(if (called-interactively-p 'interactive) (hycontrol-display-screen-offsets))
offsets))