หากคุณต้องการเปลี่ยนขนาดตามความละเอียดคุณสามารถทำสิ่งนี้ได้ (ปรับความกว้างและความละเอียดที่ต้องการตามความต้องการเฉพาะของคุณ):
(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)
โปรดทราบว่าระบบหน้าต่างเลิกใช้งานใน emac เวอร์ชันใหม่กว่า (display-graphic-p)
ทดแทนที่เหมาะสม ดูคำตอบสำหรับคำถามนี้จะตรวจสอบได้อย่างไรว่า emac อยู่ในโหมดเทอร์มินัล สำหรับพื้นหลังเพิ่มเติมเล็กน้อย