[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Frames without toolbar and menu
From: |
Matthias Meulien |
Subject: |
Re: Frames without toolbar and menu |
Date: |
05 Sep 2002 22:26:06 +0200 |
User-agent: |
Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 |
Glen Foy <onion7@toast.net> wrote:
> Is there a way to create frames without the toolbar and menu? (...)
To create a new frame without toolbar nor menubar :
(make-frame '((tool-bar-lines . nil) (menu-bar-lines . nil)))
Read the `Frames and X Window' info node to learn how to turn off the
corresponding modes.
To make this behavior persistent add the following two lines in the
.emacs file:
(menu-bar-mode -1)
(tool-bar-mode -1)
Bye.
--
Matthias