Si desea cambiar el tamaño de acuerdo con la resolución, puede hacer algo como esto (ajustando el ancho y las resoluciones preferidas de acuerdo con sus necesidades específicas):
(defun set-frame-size-according-to-resolution ()
(interactive)
(if window-system
(progn
;; use 120 char wide window for largeish displays
;; and smaller 80 column windows for smaller displays
;; pick whatever numbers make sense for you
(if (> (x-display-pixel-width) 1280)
(add-to-list 'default-frame-alist (cons 'width 120))
(add-to-list 'default-frame-alist (cons 'width 80)))
;; for the height, subtract a couple hundred pixels
;; from the screen height (for panels, menubars and
;; whatnot), then divide by the height of a char to
;; get the height we want
(add-to-list 'default-frame-alist
(cons 'height (/ (- (x-display-pixel-height) 200)
(frame-char-height)))))))
(set-frame-size-according-to-resolution)
Tenga en cuenta que el sistema de ventanas está obsoleto en las versiones más recientes de emacs. Un reemplazo adecuado es (display-graphic-p)
. Vea esta respuesta a la pregunta ¿Cómo detectar que emacs está en modo terminal? para un poco más de antecedentes.