Variable: hycontrol-screen-offset-alist

hycontrol-screen-offset-alist is a variable defined in hycontrol.el.

Value

(((1920 . 1080)
  0 10 0 68)
 ((2560 . 1440)
  0 15 0 93)
 (t 0 0 0 0))

Documentation

*Alist of screen predicate offset pairs.

The format is (screen-predicate . (top-offset right-offset bottom-offset left-offset). Offsets are integers given in pixels. The offsets associated with the first matching screen-predicate are used in HyControl screen edge frame placement commands; this is set when HyControl is first loaded/used.

Screen-predicate must be one of: a boolean function of no arguments, an integer dotted pair of (width . height) in pixels to match to, or an Emacs Lisp boolean form to evaluate.

The final predicate should always be t, for default values, typically of zero.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hycontrol.el
(defvar hycontrol-screen-offset-alist
  '(((1920 . 1080) . (0 10 0 68)) ; 24" iMac HD display
    ((2560 . 1440) . (0 15 0 93)) ; 27" iMac HD display
    (t . (0 0 0 0)))
  "*Alist of screen predicate offset pairs.
The format is (screen-predicate . (top-offset right-offset
bottom-offset left-offset).
Offsets are integers given in pixels.  The offsets associated with the first
matching screen-predicate are used in HyControl screen edge frame placement
commands; this is set when HyControl is first loaded/used.

Screen-predicate must be one of: a boolean function of no arguments, an
integer dotted pair of (width . height) in pixels to match to, or an Emacs
Lisp boolean form to evaluate.

The final predicate should always be t, for default values, typically of zero.")