help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Setting Emacs geometry (MacOS / NS)


From: Nurullah Akkaya
Subject: Re: Setting Emacs geometry (MacOS / NS)
Date: Wed, 8 Apr 2009 21:48:02 +0300



2009/4/8 Alberto Simões <hashashin@gmail.com>
Hello.

ANybody knows how to set a default emacs geometry under MacOS?
Everytime I open it I have to rescale for half of its original width :)

Cheers
Alberto

--
Alberto Simões



You can use the following function. Thats how i set my default size on OS X.

(defun na-resize-frame-big ()
  "Set size"
  (interactive)
  (set-frame-width (selected-frame) 178)
  (set-frame-height (selected-frame) 50 )
  (set-frame-position (selected-frame) 0 1))

Set you width and height accordingly. And call it from your .emacs

(na-resize-frame-big)

--
Nurullah Akkaya
http://nakkaya.com

reply via email to

[Prev in Thread] Current Thread [Next in Thread]