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

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

Re: How To Set Size Of Emacs At Startup?


From: Artur Hefczyc
Subject: Re: How To Set Size Of Emacs At Startup?
Date: Wed, 4 Jun 2003 18:09:20 +0200

> When I launch emacs the screen is 80x30, but I'd KILL to have it expand
> to a nice size 85x53 at startup. Does anyone know which variables I have
to set?
Don't kill anybody, but here is how I do it for myself:
;;; Setup default emacs frames (windows) location and size
(setq default-frame-alist
      '((wait-for-wm . nil)
 (top . 0) (left . 0)
 (width . 85) (height . 40)
 (background-color . "gray15")
 (foreground-color . "limegreen")
 (cursor-color . "LightGoldenrod")
 (mouse-color . "yellow")
))
;;; But your first frame can be different than all others
(setq initial-frame-alist
      '((top . 55) (left . 184)
        (width . 100) (height . 40)
))

Artur
--
Artur Hefczyc
Open Source Developer
http://www.geotools.org/
http://wttools.sourceforge.net/





reply via email to

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