help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: emacs and X


From: Drew Adams
Subject: RE: emacs and X
Date: Tue, 21 Sep 2004 10:28:07 -0700

C-h f set-frame-position will give you the info you need

Interactively, you can use `M-x frame-to-top-left', with this defition:

(defun frame-to-top-left ()
  "Move selected frame to top left of display"
  (interactive)
  (set-frame-position (selected-frame) 0 0))

See also commands `move-frame-horizontally' and `move-frame-vertically' in
library `do-re-mi-frames.el', here:
http://www.emacswiki.org/elisp/do-re-mi-frames.el. They let you move frames
around incrementally using the arrow keys.

 - Drew

> Is it possible to change emacs's position in X from within emacs?  Or
> even maximize the emacs window?  I would like it to go the upper left
> corner.  One of the frame properties maybe?  Any help is appreciated.






reply via email to

[Prev in Thread] Current Thread [Next in Thread]