Function: hycontrol-frame-at-left-p

hycontrol-frame-at-left-p is a byte-compiled function defined in hycontrol.el.

Signature

(hycontrol-frame-at-left-p)

Documentation

Non-nil if selected frame's left edge is at the left edge of the screen.

Screen left edge is adjusted based on hycontrol-screen-left-offset.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hycontrol.el
(defun hycontrol-frame-at-left-p ()
  "Non-nil if selected frame's left edge is at the left edge of the screen.
Screen left edge is adjusted based on `hycontrol-screen-left-offset'."
  (<= (- (nth 0 (hycontrol-frame-edges)) hycontrol-screen-left-offset)
      hycontrol-screen-offset-sensitivity))