I'd like to change the window/frame size of my XEmacs based on the current display resolution.

This is useful when I run my laptop either by itself or attached to a docking station with an external monitor. In either situation, I'd like Emacs to detect the primary screen resolution and adjust its main window frame size accordingly when I start it up.

link|improve this question

80% accept rate
feedback

2 Answers

up vote 10 down vote accepted

The current display resolution is available using the following functions (both non-interactive).

(x-display-pixel-width)
(x-display-pixel-height)
link|improve this answer
Exactly what I need. I intend to use the height to set the number of lines in my frame, and the width to position it within the display. – Loadmaster Jan 29 '10 at 0:08
feedback

For a more cross-platform solution, look at

(display-pixel-width)
(display-pixel-height)

If what you actually want to do is set the Emacs window to full screen on start-up, check out maxframe.el.

link|improve this answer
Unfortunately, these functions are not available in XEmacs. – Loadmaster Jan 29 '10 at 0:07
Also note that despite the name, these do work on w32. – nullptr Jan 29 '10 at 1:54
Good to know, on both counts. I guess that with a couple of defalias, you could still use maxframe.el if you wanted. – sanityinc Jan 29 '10 at 12:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.