Remove (hide) title bar

Pat Kane pekane52 at gmail.com
Mon Jan 28 06:03:15 PST 2008


Some or all of these entries from my  $HOME/.emacs file will help

;;
;; turn off "disoriented newbie" stuff
;; ( see: http://www.cabochon.com/~stevey/blog-rants/effective-emacs.html)
;;
(if (fboundp 'scroll-bar-mode) (scroll-bar-mode -1))
(if (fboundp 'tool-bar-mode) (tool-bar-mode -1))
(if (fboundp 'menu-bar-mode) (menu-bar-mode -1))


and as an extra bonus this will restore old  filename completion behaviour

;;
;; restore space as filename completion char
;;
(if (boundp 'minibuffer-local-filename-completion-map)
    (progn
      (define-key minibuffer-local-filename-completion-map " "
	'minibuffer-complete-word)
      (define-key minibuffer-local-must-match-filename-map " "
	'minibuffer-complete-word)
    )
)


Pat
----


On Jan 28, 2008 5:23 AM, KAMALNEET SINGH <kamalneet.s at samsung.com> wrote:
> pete johnson wrote:
> > Hi all,
> >
> > I'm using fedora 8 and its latest version of emacs.
> >
> > What X resource may I specify in ~/.Xresources to remove (hide, make
> > go away, obliterate) the title bar of the emacs window?
>
> AFAIK, it is a window manager business, not something directly handled
> by X. With metacity, u can use "Devil's Pie" and its "undecorate" action
> to get this effect. In KDE, u may be able to do it through
>  Window Menu -> Advanced -> Special Application Settings
>
>
> _______________________________________________
> xorg mailing list
> xorg at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/xorg
>



More information about the xorg mailing list