I use (add-to-list 'default-frame-alist '(fullscreen . fullheight))
for having the new frames as tall as the screen.
How can I tell emacs to make the new frames as large as one third of the screen width?
Asked
Active
Viewed 59 times
0
-
You are interested in `display-pixel-width` and `display-pixel-height`, and just some basic division. See also an example of feature request 21415 that is built-in to Emacs 25 to specify exact pixel height/width when creating a frame: https://emacs.stackexchange.com/a/17354/2287 – lawlist Aug 10 '17 at 00:38
-
This will allow you to specify position, height and width: https://emacs.stackexchange.com/questions/31058/how-to-make-size-of-emacs-frame-persistent/31063#31063 – eflanigan00 Aug 10 '17 at 14:23