all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Peter Dyballa <Peter_Dyballa@Web.DE>
To: gebser@mousecar.com
Cc: help-gnu-emacs@gnu.org
Subject: Re: New Frame is different
Date: Wed, 23 Nov 2011 15:53:18 +0100	[thread overview]
Message-ID: <38650B8A-2371-4A26-9545-88D6BCA1BA6A@Web.DE> (raw)
In-Reply-To: <4ECCD9C5.4000200@mousecar.com>


Am 23.11.2011 um 12:32 schrieb ken:

> But what's the variable name for cursor color?  And for font size?  I looked for these in the "Help" and some googling, but no help.

(setq initial-frame-alist
  (append (list
    '(border-color	. "#4e3832")
    '(foreground-color	. "grey10")
;    '(background-color	. "light steel blue")
    '(background-color . "azure")
;    '(active-alpha	. 0.875)
;    '(inactive-alpha	. 0.75)
;    '(font . "fontset-10pt_free_mono")
;    '(font . "fontset-09pt_lucida_sans_typewriter")
;    '(font . "fontset-09pt_vera_sans_mono")
;	'(font . "fontset-09pt_luxi mono")
    '(top . 136) '(left . 666) '(width . 100) '(height . 57)
  ) initial-frame-alist))
(setq default-frame-alist
  (append (list
;    '(background-color	. "MintCream")
;    '(background-color	. "azure")
    '(cursor-type	. box)
    '(active-alpha	. 0.875)
    '(inactive-alpha	. 0.75)
    '(vertical-scroll-bars . left)
;+	'(font . "Latin Modern Mono Light-8")
;    '(top . 25) '(left . 50) '(width . 89) '(height . 50)
    ) default-frame-alist))
(if (= 22 emacs-major-version)
    (setq default-frame-alist
      (append (list
	'(foreground-color	. "grey10")
	'(background-color	. "honeydew")
	'(cursor-color		. "DarkGreen")
	'(font . "fontset-10pt_lucida_sans_typewriter")
	'(top . 40) '(left . 518) '(width . 85) '(height . 45)
    ) default-frame-alist)))
(if (= 23 emacs-major-version)
    (setq default-frame-alist
      (append (list
	'(foreground-color	. "NavyBlue")
	'(background-color	. "LightCyan")
	'(cursor-color		. "firebrick")
	'(top . 66) '(left . 636) '(width . 100) '(height . 57)
	'(font . "fontset-11pt_lucida_sans_typewriter")
;+	'(font . "Lucida Sans Typewriter-8")
    ) default-frame-alist)))
(if (= 24 emacs-major-version)
    (progn
      (setq default-frame-alist
        (append (list
      	'(foreground-color	. "purple4")
      	'(background-color	. "MintCream")
      	'(cursor-color		. "IndianRed")
      	'(top . 66) '(left . 636) '(width . 100) '(height . 57)
;+    	'(font . "fontset-09pt_lucida_sans_typewriter")
;     	'(font . "fontset-10pt_vera_sans_mono")
      ) default-frame-alist))
      (setq initial-frame-alist
        (append (list '(font . "LucidaTypewriter-8") )
    	initial-frame-alist))
    ))

Colour names and colours: M-x list-colors-display.

--
Greetings

  Pete

Well done is better than well said.
				– Benjamin Franklin




  parent reply	other threads:[~2011-11-23 14:53 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-11-22 21:28 New Frame is different Mr. Alexander Etter
2011-11-23  4:33 ` XeCycle
2011-11-23  0:22   ` Mr. Alexander Etter
2011-11-23  7:24     ` Memnon Anon
2011-11-23 11:32       ` ken
2011-11-23 14:38         ` Memnon Anon
2011-11-23 14:53         ` Peter Dyballa [this message]
2011-11-23 15:16         ` Drew Adams
2011-11-25 21:26           ` Alexander

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=38650B8A-2371-4A26-9545-88D6BCA1BA6A@Web.DE \
    --to=peter_dyballa@web.de \
    --cc=gebser@mousecar.com \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.