Gnus development mailing list
 help / color / mirror / Atom feed
From: Karl Kleinpaste <karl@justresearch.com>
Subject: Re: customization: window configurations
Date: 18 Nov 1999 12:57:40 -0500	[thread overview]
Message-ID: <vxkhfij8yy3.fsf@beaver.jprc.com> (raw)
In-Reply-To: Bill White's message of "18 Nov 1999 11:44:43 -0600"

Bill White <billw@wolfram.com> writes:
> For starters, a screenshot of my gnus window configuration can be
> found at <url:http://members.wri.com/billw/pgnus.jpg>,[1] and here's the
> .gnus code that does it

My preferred window layout is on an XEmacs that's 207x89:

+-----------------------+
|         |             |
| *Group* |   *Tree*    |
|         |             |
+-----------------------+
|         |             |
|*Summary*|  *Article*  |
|         |             |
|         |             |
|         |             |
|         |             |
+-----------------------+

;; Gnus display configuration bits.
(defun gnus-karl-wide-config ()
  "*Definitions of window usage: Wide screens."
  (interactive)
  (gnus-add-configuration
   '(summary
     (horizontal 1.0
		 (vertical 1.0
			   (group 0.25) (summary 1.0 point)))))
  (gnus-add-configuration
   '(article
     (horizontal 1.0
		 (vertical 0.4 (group 0.25) (summary 1.0 point))
		 (vertical 1.0 (tree  0.25) (article 1.0)))))
  (gnus-add-configuration
   '(message
     (horizontal 1.0
		 (vertical 0.4 (group 0.25) (message 1.0 point))
		 (vertical 1.0 (tree  0.25) (article 1.0)))))
  (gnus-add-configuration
   '(reply
     (horizontal 1.0
		 (vertical 0.4 (group 0.25) (message 1.0 point))
		 (vertical 1.0 (tree  0.25) (article 1.0)))))
  (gnus-add-configuration
   '(reply-yank
     (horizontal 1.0
		 (vertical 0.4 (group 0.25) (message 1.0 point))
		 (vertical 1.0 (tree  0.25) (article 1.0)))))
  (gnus-add-configuration
   '(post
     (horizontal 1.0
		 (vertical 0.4 (group 0.25) (post 1.0 point))
		 (vertical 1.0 (tree  0.25) (article 1.0)))))
  (gnus-add-configuration
   '(forward
     (horizontal 1.0
		 (vertical 0.4 (group 0.25) (message 1.0 point))
		 (vertical 1.0 (tree  0.25) (article 1.0)))))
  (gnus-add-configuration
   '(edit-score
     (horizontal 1.0
		 (vertical 0.4 (group 0.25) (summary 1.0))
		 (vertical 1.0 (tree  0.25) (edit-score 1.0 point)))))
  (gnus-add-configuration
   '(score-trace
     (horizontal 1.0
		 (vertical 0.4 (group 0.25) (summary 1.0 point))
		 (vertical 1.0 ("*Score Trace*" 0.25) (article 1.0)))))
  (gnus-add-configuration
   '(mail-forward
     (horizontal 1.0
		 (vertical 0.4 (group 0.25) (summary 1.0))
		 (vertical 1.0 (tree  0.25) (mail 1.0 point)))))
  (gnus-add-configuration
   '(pipe
     (horizontal 1.0
		 (vertical 0.4 (group 0.25) (summary 1.0 point))
		 (vertical 1.0 ("*Shell Command Output*" 0.25) (article 1.0))))))
(defun gnus-karl-narrow-config ()
  "*Definitions of window usage: Narrow screens."
  (interactive)
  (gnus-add-configuration
   '(summary
     (vertical 1.0 (group 0.25) (summary 1.0 point))))
  (gnus-add-configuration
   '(article
     (vertical 1.0 (group 0.25) (summary 0.2 point) (article 1.0))))
  (gnus-add-configuration
   '(message
     (vertical 1.0 (group 0.25) (message 0.2 point) (article 1.0))))
  (gnus-add-configuration
   '(reply
     (vertical 1.0 (group 0.25) (message 0.2 point) (article 1.0))))
  (gnus-add-configuration
   '(reply-yank
     (vertical 1.0 (group 0.25) (message 0.2 point) (article 1.0))))
  (gnus-add-configuration
   '(post
     (vertical 1.0 (group 0.25) (post    0.2 point) (article 1.0))))
  (gnus-add-configuration
   '(forward
     (vertical 1.0 (group 0.25) (message 0.2 point) (article 1.0))))
  (gnus-add-configuration
   '(edit-score
     (vertical 1.0 (group 0.25) (summary 0.2) (edit-score 1.0 point))))
  (gnus-add-configuration
   '(score-trace
     (vertical 1.0 (group 0.25) (summary 0.2 point) ("*Score Trace*" 1.0))))
  (gnus-add-configuration
   '(mail-forward
     (vertical 1.0 (group 0.25) (summary 0.2) (mail 1.0 point))))
  (gnus-add-configuration
   '(pipe
     (vertical 1.0 ("*Shell Command Output*" 0.25) (summary 1.0 point)))))
;;
(if (> (frame-width) 200)
    (gnus-karl-wide-config) (gnus-karl-narrow-config))


  reply	other threads:[~1999-11-18 17:57 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1999-11-18 17:44 Bill White
1999-11-18 17:57 ` Karl Kleinpaste [this message]
1999-11-18 18:40 ` Fwd: " BrYan P. Johnson
1999-12-01 16:54 ` Lars Magne Ingebrigtsen

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=vxkhfij8yy3.fsf@beaver.jprc.com \
    --to=karl@justresearch.com \
    /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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).