Function: hycontrol-frame-at-bottom-p
hycontrol-frame-at-bottom-p is a byte-compiled function defined in
hycontrol.el.
Signature
(hycontrol-frame-at-bottom-p)
Documentation
Non-nil if selected frame's bottom is at the bottom of the screen.
Screen bottom edge is adjusted based on hycontrol-screen-bottom-offset.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hycontrol.el
(defun hycontrol-frame-at-bottom-p ()
"Non-nil if selected frame's bottom is at the bottom of the screen.
Screen bottom edge is adjusted based on `hycontrol-screen-bottom-offset'."
(<= (- (display-pixel-height) (nth 3 (hycontrol-frame-edges)) hycontrol-screen-bottom-offset
;; Under macOS, frames are automatically offset vertically by
;; the height of the global menubar, so account for that.
(if (eq system-type 'darwin) -23 0))
hycontrol-screen-offset-sensitivity))