Function: hycontrol-frame-to-bottom-right

hycontrol-frame-to-bottom-right is an interactive and byte-compiled function defined in hycontrol.el.

Signature

(hycontrol-frame-to-bottom-right)

Documentation

Move the selected frame to the bottom right of the screen.

Allow for hycontrol-screen-*-offsets.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hycontrol.el
(defun hycontrol-frame-to-bottom-right ()
  "Move the selected frame to the bottom right of the screen.
Allow for hycontrol-screen-*-offsets."
  (interactive)
  (hycontrol-set-frame-position
   nil
   (- (display-pixel-width) (hycontrol-frame-width) hycontrol-screen-right-offset)
   (- (display-pixel-height) (hycontrol-frame-height) hycontrol-screen-bottom-offset)))