Boyutu çözünürlüğe göre değiştirmek istiyorsanız, şu şekilde bir şey yapabilirsiniz (tercih ettiğiniz genişliği ve çözünürlükleri özel ihtiyaçlarınıza göre ayarlayın):
(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)
Pencere sisteminin daha yeni emacs sürümlerinde kullanımdan kaldırıldığını unutmayın. Uygun bir yedek (display-graphic-p)
. Bkz bu cevabı soruya nasıl olduğunu emacs'ı algılamak için terminal modundayken? biraz daha arka plan için.